Oct 03
|
The Desktop class was added in Java 6 to handle launching associated applications on the native desktop.
Following shows how to launch the associated editor application and open a file for editing.
File file = new File("/tmp/file.txt"); Desktop desktop = Desktop.getDesktop(); desktop.edit(file);