gpt4 book ai didi

java - 在端口 11111 上监听 * 地址

转载 作者:行者123 更新时间:2023-12-02 00:19:52 31 4
gpt4 key购买 nike

我已经尝试过(抱歉我的愚蠢)

InetAddress inet=InetAddress.getByName("*");
ServerSocket ss=new ServerSocket(11111,0,inet);

但这是错误的。我希望我的应用程序能够监听 *:11111。

感谢您的任何提示。

抱歉,我的标题误导了您,我会更新以修复它

最佳答案

ServerSocket ss=new ServerSocket(11111,0,null);

来自 ServerSocket 的文档:

The bindAddr argument can be used on a multi-homed host for a ServerSocket that will only accept connect requests to one of its addresses. If bindAddr is null, it will default accepting connections on any/all local addresses.

关于java - 在端口 11111 上监听 * 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11239912/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com