Related questions
Open a link in browser with java button?
How can I open a link in default browser with a button click, along the lines of
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
open("www.google.com"); // just what is the 'open' method?
}
});
?
How to get the Desktop path in java
I think this will work only on an English language Windows installation:
System.getProperty("user.home") + "/Desktop";
How can I make this work for non English Windows?
Best IDE for developing Java Desktop Applications
I've been developing Java Web apps using Eclipse as the IDE. Planning to start developing a desktop app based on Java.
Can someone suggest the best IDE for developing Java based desktop apps? (One that would have drag drop for …