Desktop.getDestop().open(File) は、関連付けられたアプリケーションを起動してファイルを開きます。
Desktop クラスは Java 1.6 以降で使用できます - http://docs.oracle.com/javase/6/docs/api/java/awt/Desktop.html
1.4 Java バージョンを使用して同じことを行う方法は?
Desktop.getDestop().open(File) は、関連付けられたアプリケーションを起動してファイルを開きます。
Desktop クラスは Java 1.6 以降で使用できます - http://docs.oracle.com/javase/6/docs/api/java/awt/Desktop.html
1.4 Java バージョンを使用して同じことを行う方法は?
以下を使用して、デフォルトのアプリケーションでファイルを開くことができます。
/* build up command and launch */
String command = "";
String file = "FILE IN HERE";
if (isLinux()) {
command = "xdg-open " + file;
} else if (isWindows()) {
command = "cmd /C start " + file;
} else
return;
try {
Runtime.getRuntime().exec(command);
} catch (Exception ex) {
ex.printStackTrace();
}
1.0 以降で利用可能: Runtime .
Runtime.exec()
詳細については、http: //docs.oracle.com/javase/6/docs/api/java/lang/Runtime.htmlを参照してください。