我已经搜索了很多,并找不到什么指导。有人可以引导我走向在Java swing应用程序中在Jlist中创建可行超链接的最佳途径吗?
答案 0 :(得分:3)
这是一种没有多余的方式。
jList1.addListSelectionListener(this);
public void valueChanged(ListSelectionEvent e) {
if (e.getValueIsAdjusting())
return;
String url = (String)jList1.getSelectedValue();
//Assume browser is supported on Desktop API
Desktop.getDesktop().browse(new URI(url));
}
我在这里使用默认模型,显示的值是URL。在JDK 1.6上运行