Java Process exitValue()方法

java.lang.Process.exitValue() 方法返回的子进程退出值。

1 语法

public abstract int exitValue()

2 参数

3 返回值

此方法返回由该Process对象表示的子进程的退出值。按照惯例,值0表示正常终止。

4 示例 

package com.yiidian;

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

         // destroy the process instantly to get a exit value
         p.destroy();

         // get the exit value of the new process
         System.out.println("" + p.exitValue());

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

   }
}

输出结果为:

Creating Process...
1

 

热门文章

优秀文章