NetworkInterface 的 getNetworkInterfaces() 到 JComboBox
第一个问题
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单地向 JComboBox 添加字符串是不行的。
或者,如果您想在模型中处理它,则编写一个实现
ListCellRenderer
的类,并在其方法getListCellRendererComponent()
中调用获取名称的方法并返回该名称。Doesn't simply adding string to JComboBox works.
or if you want to handle it in model then write a class that implements
ListCellRenderer
and in its methodgetListCellRendererComponent()
call your method of getting name and return that.