NetworkInterface 的 getNetworkInterfaces() 到 JComboBox

发布于 2024-11-19 08:31:08 字数 321 浏览 1 评论 0原文

第一个问题

NetworkInterface.getNetworkInterfaces();

返回枚举类型。 Enumeration 的每个元素都有一个 getDisplayName() 方法,该方法返回一个字符串,例如 en0、en1、vnic1 等。 现在我想将这些字符串制作成 JComboBox。 出于好奇,我试图通过

jComboBox1.setModel("Some code here");

另一个问题来添加这些内容。为什么从事 Java 工作的人们决定使用枚举而不是网络接口?

First Question

NetworkInterface.getNetworkInterfaces();

returns a Enumeration type.
each element of the Enumeration has a getDisplayName() method which returns a string such as en0, en1, vnic1 etc.
Now I would like to make these strings into a JComboBox. I'm Stuck trying to add these through

jComboBox1.setModel("Some code here");

One more question out of curiosity.. Why did the folks working on Java decide to use Enumeration instead of NetworkInterface?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

み零 2024-11-26 08:31:08

简单地向 JComboBox 添加字符串是不行的。

jComboBox.add(NetworkInterface.getNetworkInterfaces().en1.getDisplayName())

或者,如果您想在模型中处理它,则编写一个实现 ListCellRenderer 的类,并在其方法 getListCellRendererComponent() 中调用获取名称的方法并返回该名称。

Doesn't simply adding string to JComboBox works.

jComboBox.add(NetworkInterface.getNetworkInterfaces().en1.getDisplayName())

or if you want to handle it in model then write a class that implements ListCellRenderer and in its method getListCellRendererComponent() call your method of getting name and return that.

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