春春要当女侠 2015-11-04 01:26 采纳率: 0%
浏览 1601

java 虚拟机读写其他进程数据的问题

import java.util.*;
import java.io.*;
/**

  • Description:

  • Copyright (C), 2005-2008, Yeeku.H.Lee

  • This program is protected by copyright laws.

  • Program Name:

  • Date:
  • @author Yeeku.H.Lee kongyeeku@163.com
  • @version 1.0
    */
    public class WriteToProcess
    {
    public static void main(String[] args)
    {
    PrintStream ps = null;
    try
    {
    //运行java ReadStandard命令,返回运行该命令的子进程
    Process p = Runtime.getRuntime().exec("java ReadStandard");
    //以p进程的输出流创建PrintStream对象
    //这个输出流对本程序是输出流,对p进程则是输入流)
    ps = new PrintStream(p.getOutputStream());
    //向ReadStandard程序写入内容,这些内容将被ReadStandard读取
    ps.println("普通字符串");
    ps.println(new WriteToProcess());
    }
    catch (IOException ex)
    {
    ex.printStackTrace();
    }
    finally
    {
    if (ps != null)
    ps.close();
    }
    }
    }
    //定义一个ReadStandard类,该类可以接受标准输入,
    //并将标准输入写入out.txt文件。
    class ReadStandard
    {
    public static void main(String[] args) throws Exception
    {

    //使用System.in创建Scanner对象,用于获取标准输入
    Scanner sc = new Scanner(System.in);
    PrintStream ps = new PrintStream(
        new FileOutputStream("out.txt"));
    //增加下面一行将只把回车作为分隔符
    sc.useDelimiter("\n");
    //判断是否还有下一个输入项
    while(sc.hasNext())
    {
        //输出输入项
        ps.println("键盘输入的内容是:" + sc.next());
    }
    ps.close();
    

    }
    }
    本程序在cmd窗口下正常运,可以生成out.txt,其中的内容为
    键盘输入的内容是:普通字符串

键盘输入的内容是:WriteToProcess@1b67f74

然而在Eclipse中运行却无法生成out.txt???

  • 写回答

2条回答 默认 最新

  • Robot-C 2015-11-04 01:32
    关注

    使用Runtime对象的exec()方法可以获得其他进程的Process对象,Process对象代表由该Java程序启动的子进程,Process类提供了如下3个方法,用于让程序和其子进程进行通讯。
    InputStream getErrorStream():获取子进程的错误流
    InputStream getInputStream():获取子进程的输入流
    OutputStream getOu......
    答案就在这里:Java虚拟机读写其他进程的数据
    ----------------------你好,人类,我是来自CSDN星球的问答机器人小C,以上是依据我对问题的理解给出的答案,如果解决了你的问题,望采纳。

    评论

报告相同问题?

悬赏问题

  • ¥15 STM32标准库IIS协议读取INMP441并通过DMA与串口传到上位机
  • ¥15 爬虫爬取网站的一些信息
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding