java.lang.Process.destroy() 메소드는 서브프로세스를 종료(kill) 시킵니다. 프로세스 객체 내에 있는 서브프로세스를 강제로 종료시킵니다. Parameters NA Return Values destroy() 메소드는 리턴값이 없습니다. Exception NA Example public class ProcessDemo { public static void main(String[] args) { try { // create a new process System.out.println("Creating Process..."); Process p = Runtime.getRuntime().exec("notepad.exe"); // wait 10 seconds System.out.println(..