存储主机名和端口的最佳方式是什么?
我需要一个存储ID(键)和主机名:端口(值)的地图。我应该使用什么类型的对象来存储值?
我尝试了这样的事情:
map.put(id, new URI("localhost:2222"));
但是在我执行之后
entry.getValue().getHost()
,
entry.getValue().getPort()
我得到:null和-1。
我只需要主机名和端口,仅此而已。
I need a map in which I store ID (key) and hostname:port (value). What type of object should I use to store the value?
I tried something like this:
map.put(id, new URI("localhost:2222"));
But after I'd executed
entry.getValue().getHost()
and
entry.getValue().getPort()
I got: null and -1.
I need only hostname and port, nothing more.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 InetSocketAddress。
You could use an InetSocketAddress.
一张地图。您显示的两行是相同的,因此我不确定为什么会得到不同的结果,但如果没有更多代码,就不可能确定查找失败的原因,除非 URI 未正确解析。
A map. The two lines you show are the same, so I'm not sure why you got different results, but without more code, it's impossible to determine why your lookup failed unless the URI didn't parse correctly.