存储主机名和端口的最佳方式是什么?

发布于 2024-12-10 06:05:26 字数 348 浏览 0 评论 0原文

我需要一个存储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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷乱花海 2024-12-17 06:05:26

您可以使用 InetSocketAddress。

You could use an InetSocketAddress.

你的心境我的脸 2024-12-17 06:05:26

一张地图。您显示的两行是相同的,因此我不确定为什么会得到不同的结果,但如果没有更多代码,就不可能确定查找失败的原因,除非 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文