Java Process getOutputStream()方法
java.lang.Process.getOutputStream() 方法获取子进程的输出流。输出到流通过管道输送到该Process对象表示的进程的标准输入流。
1 语法
public abstract OutputStream getOutputStream()
2 参数
无
3 返回值
此方法返回连接到子进程的正常输入输出流。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Enum compareTo()方法
*/
import java.io.BufferedOutputStream;
import java.io.OutputStream;
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");
// get the output stream
OutputStream out = p.getOutputStream();
// close the output stream
System.out.println("Closing the output stream...");
out.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
输出结果为:
Creating Process...
Closing the output stream...
热门文章
优秀文章