일반 BufferedReader.readLine() hangs

황제낙엽 2012.02.23 14:03 조회 수 : 520

증상은 BufferedReader 의 readLine() 함수만 호출하면 멈춰버리는 현상

원인은 readLine() 함수가 carridge return이나 line feed가 나올때까지 대기하기 때문이라고 하는데 해결은 아래와 같이 BufferedReader.ready() 함수를 이용하여 준비상태를 확인해주는 것이다


I debugged a simple program to learn JavaCompiler in new JDK, but found BufferedReader.readLine() hangs for some reason. BufferedReader.readLine() returns null toindicate that you have reached the end of the data stream (i.e. the remote has closed). At all other times, readLine() will block until there is a complete
line (i.e. a message terminated by a newline). If you need to know that there is data before attempting to read, try to use BufferedReader.isReady() method.

Here is the sample code:
        Runtime run = Runtime.getRuntime();
        Process p = run.exec("java");

        BufferedInputStream in = new BufferedInputStream(p.getInputStream());
        BufferedReader br = new BufferedReader(new InputStreamReader(in));
       
        if (br.ready()) {
            String line;
            while ((line = br.readLine()) != null) {
                System.out.println(line);
            }
        } 


다른 방법에 대해서도 나와있긴한데 별로 좋은 방법처럼 보이지는 않지만 혹시나해서 스크랩해둔다

스레드를 이용해서 waitFor() 를 강제 수행하고 있다


package dfi.exloadv3;

 

import java.util.*;

import java.io.*;

 

public class ShellCmd  extends Thread {

 

    private Process pProcess = null;

    private String resource_info = "";

    private int    return_code = -1;

    private boolean debug_mode = false;

    private String  cmd = null;

       private String cmdlog_file = null;

       private String cmderr_file = null;

   

    public void setCmd( String cmd )

    {

        this.cmd = cmd;

    }

    public void setCmdLogFile( String cmdlog_file )

    {

        this.cmdlog_file = cmdlog_file;

    }

    public void setCmdErrFile( String cmderr_file )

    {

        this.cmderr_file = cmderr_file;

    }

   

    public void run()

    {

        StringBuffer result = new StringBuffer();

        String line = "";

        BufferedReader stdout = null;

        BufferedReader stderr = null;

        BufferedWriter bwout = null;

        BufferedWriter bwerr = null;

        try

        {

               if( this.cmd != null && this.cmd.length() > 0 )

               {

                     if( cmdlog_file == null || cmdlog_file.length() <= 0  )

                     {

                            File tfile = new File( cmd );

                            if( tfile.exists() == true )

                            {

                                 cmdlog_file = cmd+ ".log";

                            }

                            else

                                   cmdlog_file = "/dev/null";

                     }

                     if( cmderr_file == null || cmderr_file.length() <= 0  )

                     {

                            File tfile = new File( cmd );

                            if( tfile.exists() == true )

                            {

                                   cmderr_file = cmd+ ".log";

                            }

                            else

                                   cmderr_file = "/dev/null";

                     }

                    

                   pProcess = Runtime.getRuntime().exec(  this.cmd   ); 

                stdout = new BufferedReader( new InputStreamReader(pProcess.getInputStream()) );

                  stderr = new BufferedReader(new InputStreamReader(pProcess.getErrorStream()));

               bwout = new BufferedWriter(new OutputStreamWriter( new FileOutputStream( this.cmdlog_file )));

               bwerr = new BufferedWriter(new OutputStreamWriter( new FileOutputStream( this.cmderr_file )));

                   while( (line = stdout.readLine()) != null )

                     {

//                       result.append( line + "n" ); 

                         bwout.write(line + "n" );

                     } 

                while( (line = stderr.readLine()) != null )

                     {

//                       result.append( line + "n" ); 

                      bwerr.write(line + "n" );

                     }  

                resource_info = result.toString();

               }

               else

               {

                     System.out.println("    [Error] Coammnd Emtpy");

               }

        }

        catch( Exception e)

        {

               System.out.println( e.toString() );

        }

        finally{

               try

               {

                      if( bwout != null )

                            bwout.close();

                      if( bwerr != null )

                            bwerr.close();

                      if( stdout != null )

                            stdout.close();

                      if( stderr != null )

                            stderr.close();

               }catch (IOException e)

               {

                    

               }

        }

    }

   

    public boolean WaitProcess()

    {

        boolean bRet = false;

        try

        {

            while( true )

            {

                if( this.isAlive() == false )

                {

//                      System.out.println( this.getName() + "    Status : "+ this.getState());

                   pProcess.waitFor();                    

//                        System.out.println( " result : " + resource_info ) ;

                   return_code = pProcess.exitValue();

                    System.out.println("  return code : " + return_code );

                    if( return_code == 0 )

                         bRet = true;

                   break;

                  }

            } 

        }

        catch( Exception e)

        {

                 System.out.println( e.toString() );

        }

        return bRet;

    }

 

    public static void main(String[] args) 

    {

          String cmd = null;

        

          ShellCmd jt = new ShellCmd();

          cmd = "ls";

          jt.setCmd( cmd );

          jt.start();

          jt.WaitProcess(); 

    }

}



번호 제목 글쓴이 날짜 조회 수
231 싱글톤 방식의 테스트용 Temporary Data Access Object 황제낙엽 2017.01.12 1603
230 SimpleDateFormat Symbol file 황제낙엽 2016.12.20 74
229 JSON-lib Java Library file 황제낙엽 2013.04.09 91
228 JSP 파일에서 getOutputStream() has already been called for this response 에러 황제낙엽 2013.04.24 11479
227 servlet 에서의 json 한글처리 황제낙엽 2013.04.23 1519
226 -file.encoding의 역할 (다국어, 한국어) 황제낙엽 2013.04.10 235
225 [The type HttpUtils is deprecated] javax.servlet.http.HttpUtils 황제낙엽 2013.03.20 276
224 com.oreilly.servlet.multipart 를 이용한 파일 업로드 file 황제낙엽 2013.03.19 104
223 String to InputSource 황제낙엽 2012.12.03 77
222 Class.getResource() vs. ClassLoader.getResource()/getResources() 황제낙엽 2012.06.24 57
221 Jar파일에 포함된 리소스 접근하는 방법(How to read a resource from a JAR file ) file 황제낙엽 2012.06.24 164
220 Java에서 URL 다루기 file 황제낙엽 2012.06.24 88
219 HttpServletResponse.setContentType(java.lang.String type) 과 MIME 타입 황제낙엽 2012.04.20 172
218 code, codebase 속성과 applet object 동적 생성 file 황제낙엽 2012.04.17 85
217 한글 파일명 깨짐으로 살펴본 다국어 처리 문제 (UTF-8) 황제낙엽 2012.03.22 10121
» BufferedReader.readLine() hangs 황제낙엽 2012.02.23 520
215 OS 쉘 명령어(shell script) 실행하기 [ProcessBuilder, Runtime.getRuntime().exec()] 황제낙엽 2012.02.22 664
214 PreProcess 실행 (전처리기 만들기) file 황제낙엽 2012.01.04 169
213 javax.script와 타입변환 황제낙엽 2012.01.03 62
212 Scripting within Java 황제낙엽 2012.01.03 69