BufferedReader.readLine()不读取并挂起系统

时间:2012-11-12 07:15:42

标签: java java-ee streaming buffer bufferedreader

  

可能重复:
  BufferedReader.readLine() do not read and hang the system(wait)

尝试导入MYSQL数据库,但遇到BufferedReader.readLine()Methode中的问题,它使系统等待某事。 代码在一段时间后导入数据库备份,但系统总是运行并且readLine方法不允许系统向前移动,并且在此代码中输出到来。 1 2 3 4 4A 并且系统开始等待某事。 任何解决方案 在此先感谢

public static boolean restoreDB(String dbName, String dbUserName, String dbPassword, String source) {
    String[] executeCmd = new String[]{"C:\\Program Files\\MySQL\\MySQL Server 5.5\\bin\\mysql", "--user=" + dbUserName, "--password=" + dbPassword, "-e", "source \"D:/khokher/medmax.sql\""};

    System.out.println("1 Processing Start");
    Process runtimeProcess = null;
    try {
        String line = "";
        System.out.println("2");

        runtimeProcess = new ProcessBuilder(executeCmd).start();
        System.out.println("3");

        InputStream istrm = runtimeProcess.getInputStream();
        InputStreamReader istrmrdr = new InputStreamReader(istrm);
        BufferedReader buffrdr = new BufferedReader(istrmrdr);
        System.out.println("4");
        String data;
        String st;
        System.out.println("4a");
        while (!(st=buffrdr.readLine()).isEmpty()) { // actual problem is in readLine Method it block system
        System.out.println("5 in loop");
        }

        int ev = 0 ;
        System.out.println("7 .waitFor()");
        if (runtimeProcess.waitFor() != 0) {
        ev = runtimeProcess.exitValue();
        System.out.println("8 process exitValue()");
        }else{
            System.out.println("9 Backup restored successfully");
            return true;
        }



    } catch(InterruptedException e){
        e.printStackTrace();
        System.out.println("10");
         Thread.currentThread().interrupt();
        return false;
    } catch (Exception ex) {
        ex.printStackTrace();
        System.out.println("11");
        Thread.currentThread().interrupt();
        return false;
    } finally { 
        System.out.println("processing stoped");
    }

    return false;
}

2 个答案:

答案 0 :(得分:3)

当EOF

时,

buffrdr.readLine()返回null

while (!(st=buffrdr.readLine()).isEmpty())会抛出NPE

如果你想在第一个空行之后停止阅读:

while ((( st = buffrdr.readLine()) != null)  && ( ! st.trim().isEmpty()))

如果没有抛出异常,程序永远不会停止,因为进程runtimeProcess永远不会终止并且永远不会输出空行。

您应该阅读runtimeProcess的错误流,因为它可能会使流饱和,挂起进程(如EJP所示)。

答案 1 :(得分:1)

@Aubin指出NPE完全正确,但如果readLine()阻塞,则没有数据可用;换句话说,发件人没有发送。这可能是因为您尚未关闭正在执行的进程的标准输入。也可能是因为您没有阅读错误流。中断你自己的线程也是毫无意义的。