Java
자바에서 응용프로그램 실행하는 예제 소스
위푸
2009. 2. 1. 15:30
Runtime r = Runtime.getRuntime();
try {
r.exec("C:\\Program Files\\EditPlus 3\\editplus.exe");
} catch (IOException e) {
System.out.println("프로그램 실행 에러");
e.printStackTrace();
}
try {
r.exec("C:\\Program Files\\EditPlus 3\\editplus.exe");
} catch (IOException e) {
System.out.println("프로그램 실행 에러");
e.printStackTrace();
}