进程暂停时Java运行时exec getInputStream

时间:2014-09-26 22:27:42

标签: java

我正在为在Windows命令行上运行的可执行文件创建一个包装器。可执行文件接受一些命令,然后尝试连接到另一个设备。然后它输出和错误!或准备好“设备名称”我不会收到此消息,直到该应用程序退出。问题是这个应用程序是一个隧道允许我在外部框上运行telnet但我需要确保设备准备好这是我的代码。

public void startUDPTunnel() {
    //TODO Pull Amino serial number from webportal
    Properties prop = new Properties();
    InputStream inConfig = getClass().getClassLoader().getResourceAsStream("config.properties");
    try {
        prop.load(inConfig);
    } catch (IOException e) {
        System.out.println(e.getMessage());
    }
    String server = prop.getProperty("server");//config.GetProp("server");
    System.out.println(server);
    String port = prop.getProperty("port");//config.GetProp("port");
    System.out.println(port);
    String location = prop.getProperty("location");//config.GetProp("location");
    System.out.println(location);
    String url = prop.getProperty("URL");
    System.out.println(url);
    String input = "";
    try {
        input = getSerial(url);
        System.out.println(input);
        Process p = Runtime.getRuntime().exec(location+"udptunnel.exe -c 127.0.0.1 23 "+input+" "+server+" "+port+" 127.0.0.1 23");  

        threadSleep();
        BufferedReader in = new BufferedReader(
                            new InputStreamReader(p.getInputStream()));
        String line = null;
        while ((line = in.readLine()) != null) {
            if(line.equals("ERROR!")){
                System.out.println("There was an ERROR");
            }
            if(line.equals("Ready for \""+input+"\"")){
                System.out.println("Load Telnet");
            }
        }
        p.destroy();
    } catch (IOException e) {  
        e.printStackTrace();  
    }
}

很抱歉,此功能中还有很多调试代码。

修改

好的我非常确定知道问题是什么,bufferReader.readLine()需要一个\ n或\ r或者只是挂起是否仍然可以在没有缓冲区的情况下观看流?

2 个答案:

答案 0 :(得分:0)

您应该使用ProcessBuilder,然后使用redirectErrorStream()。我认为这将导致进程的stdout无缓冲。即使没有,您也只需阅读一个InputStream即可同时获得stdoutstderr

答案 1 :(得分:0)

我已经弄清楚我的问题我用java执行的应用程序在行末没有EOL实际上它们只是挂起就行例如telnet等待用户名然后密码。我不确定这是否合适但它有效并且是我现在要使用的

while((i=br.read())!=-1){
    ch += (char)i;
}

当它们进来时输出每个字符,然后我确保字符串包含我正在寻找的内容!