英文:
loopback ip using socketserver on java
问题
我一直在尝试使用 ServerSocket
在环回设备上创建服务器。
ServerSocket server = new ServerSocket(PORT, 0, InetAddress.getByName(null));
要访问服务器的主机是以 ip6-localhost/::1
提供的,但这会导致错误:ERR_INVALID_HTTP_RESPONSE
。
有关如何使用 127.0.0.1
访问本地服务器的任何指示吗?
英文:
I have been tying to create a server on loop-back device using ServerSocket
.
ServerSocket server = new ServerSocket(PORT, 0, InetAddress.getByName(null));
The host to reach the server is provided as ip6-localhost/::1
however it results in error: ERR_INVALID_HTTP_RESPONSE
any pointer on how to access local server using 127.0.0.1
?
答案1
得分: 0
以下是翻译好的内容:
在这个问题中,一些答案和评论解决了这个问题。即在代码中传入localhost
或127.0.0.1
。
ServerSocket server = new ServerSocket(9090, 0, InetAddress.getByName("localhost"));
英文:
Some of the answers and comments in this question address this problem. ie- passing in localhost
or 127.0.0.1
instead
ServerSocket server = new ServerSocket(9090, 0, InetAddress.getByName("localhost"))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论