package com.moonights.tools;
/**
* 调用其他的可执行文件,例如:自己制作的exe,或是安装的其他软件
* @author sxd
*
*/
public class JavaCallExe {
public void CallExe(String str){
Runtime rn = Runtime.getRuntime();
Process p = null;
try {
p = rn.exec(str);
} catch (Exception e) {
System.out.println("Error exec notepad");
}
}
/*
* test
*/
public static void main(String args[]) {
new JavaCallExe().CallExe("notepad.exe");
}
}