import java.io.File;
import java.io.IOException;
class pro {
public static void main(String[] args) {
try {
Process proc = Runtime.getRuntime().exec("notepad.exe");
proc.waitFor();
}
catch (Throwable t) {System.out.println("Caught " + t);}
}
}
最終更新:2011年06月09日 00:08