Wie kann ich einen Link im Standardbrowser mit einem Klick auf die Schaltfläche öffnen?
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
open("www.google.com"); // just what is the 'open' method?
}
});
?