当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Process Destroy()用法及代码示例


destroy() 方法是 Java Process 类的一个方法。它是由 Process 类定义的抽象方法。此方法用于终止或简单地终止进程。

用法

public abstract void destroy()

参数

NA

返回

此方法不返回值。

例子1

public class ProcessdestroyMethodExample1 {
public static void main(String[] args) 
{
try{
       //creating a new process
System.out.println("Creating a new process");
       Process p1= Runtime.getRuntime().exec("notepad.exe");


p1.destroy();
System.out.println("Process destroyed");
}catch(Exception e)
    {
System.out.println("Exception e");
    }

    }
    }

输出:

Creating a new process
Process Destroyed

例子2

public class ProcessdestroyMethodExample2{ 
public static void main(String[] args) {
try{
System.out.println("creating a new process");
ProcessBuilder b2 = new ProcessBuilder("notepad.exe");
            Process p2= b2.start();
System.out.println("waiting");
Thread.sleep(900);
p2.destroy();
System.out.println("process destroyed");
          }
catch(Exception e){
System.out.println(e);
        }
    }
}

输出:

creating a new process
waiting
process destroyed



相关用法


注:本文由纯净天空筛选整理自 Java Process Destroy() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。