// 外部のEXE起動
private static void StartExe(){
try {
// ファイルが存在するか確認
File file = new File(" C:\\test.exe");
if ( !file.exists() ){
System.out.println("ファイルが存在しません!");
return;
}
// 独立したプロセスで実行
Runtime rt = Runtime.getRuntime();
rt.exec(file.getName());
} catch (IOException ex) {
ex.printStackTrace();
}
}
----------------------------------------------------------
■参考
//引数を指定して実行
exec(
String[] array)
//Java 仮想マシン内の空きメモリーの量を返します。
freeMemory()
0 件のコメント:
コメントを投稿