Java Process destroy()方法

java.lang.Process.destroy() 方法杀死子进程。该Process对象表示的子进程被强制终止。

1 语法

public abstract void destroy()

2 参数

3 返回值

此方法不返回任何值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Process destroy()方法
 */
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("Waiting...");
         Thread.sleep(10000);

         // kill the process
         p.destroy();
         System.out.println("Process destroyed.");

      } catch (Exception ex) {
         ex.printStackTrace();
      }

   }
}

输出结果为:

Creating Process...
Waiting...
Process destroyed.

 

热门文章

优秀文章