码迷,mamicode.com
首页 > 编程语言 > 详细

Java虚拟机读写其他进程的数据

时间:2015-07-10 15:25:30      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:虚拟机   java   

使用Runtime对象的exec()方法可以获得其他进程的Process对象,Process对象代表由该Java程序启动的子进程,Process类提供了如下3个方法,用于让程序和其子进程进行通讯。

InputStream getErrorStream():获取子进程的错误流

InputStream getInputStream():获取子进程的输入流

OutputStream getOutputStream():获取子进程的输出流

下面的代码实现了获取子进程的错误输出

  1. import java.io.BufferedReader;  
  2. import java.io.InputStreamReader;  
  3.   
  4.   
  5. public class Test {  
  6.     public static void main(String[] args) throws Exception  
  7.     {  
  8.           
  9.         Process p=Runtime.getRuntime().exec("adb");  
  10.         BufferedReader br=new BufferedReader(new InputStreamReader(p.getErrorStream()));  
  11.         String str=null;  
  12.         while((str=br.readLine())!=null)  
  13.         {  
  14.             System.out.println(str);  
  15.         }  
  16.   
  17.     }  
  18.       
  19.   
  20.   
  21.       
  22. }  

下面程序演示两个Java程序通讯

这个数父进程

  1. import java.io.OutputStream;  
  2. import java.io.PrintStream;  
  3.   
  4.   
  5. public class Test {  
  6.     public static void main(String[] args) throws Exception  
  7.     {  
  8.         Process p=Runtime.getRuntime().exec("java work");  
  9.         OutputStream os=p.getOutputStream();  
  10.         PrintStream ps=new PrintStream(os);  
  11.         ps.println("张译成");  
  12.         os.close();  
  13.           
  14.           
  15.     }  
  16.       
  17.   
  18.   
  19.       
  20. }  


下面是子进程

  1. import java.io.FileOutputStream;  
  2. import java.io.PrintStream;  
  3. import java.util.Scanner;  
  4.   
  5. public class work {  
  6.     public static void main(String[] args) throws Exception{  
  7.         Scanner sc=new Scanner(System.in);  
  8.         FileOutputStream fis=new FileOutputStream("work");  
  9.         PrintStream ps=new PrintStream(fis);  
  10.         System.setOut(ps);  
  11.         while(sc.hasNextLine())  
  12.         {  
  13.             System.out.println(sc.nextLine());  
  14.         }  
  15.         ps.close();  
  16.   
  17.     }  
  18.   
  19. }  

版权声明:本文为博主http://www.zuiniusn.com 原创文章,未经博主允许不得转载。

Java虚拟机读写其他进程的数据

标签:虚拟机   java   

原文地址:http://blog.csdn.net/u013141940/article/details/46828963

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!