最佳答案
如何在默认浏览器中按一下按钮打开一个链接
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
open("www.google.com"); // just what is the 'open' method?
}
});
?