Java의 Runtime.getRuntime()을 활용하여 프로그램에서 명령 프롬프트 명령을 실행할 때 다음이 발생할 수 있습니다. 명령이 반환하는 출력을 캡처하는 데 어려움이 있습니다. 문제를 자세히 살펴보고 강력한 방법을 사용하여 원하는 출력을 검색하고 인쇄하는 방법을 알아봅시다.
귀하의 접근 방식에서는 System.out.println()을 사용하여 프로세스 개체 proc을 인쇄하려고 하면 의미 있는 결과가 나오지 않습니다. 결과. 대신, 실행된 명령의 InputStream을 BufferedReader로 채널링하여 출력에 액세스하고 이후에 인쇄해야 합니다.
다음은 업데이트되고 완벽하게 작동하는 코드 조각입니다.
Runtime rt = Runtime.getRuntime(); String[] commands = {"system.exe", "-get t"}; Process proc = rt.exec(commands); BufferedReader stdInput = new BufferedReader(new InputStreamReader(proc.getInputStream())); BufferedReader stdError = new BufferedReader(new InputStreamReader(proc.getErrorStream())); // Read the output from the command System.out.println("Here is the standard output of the command:\n"); String s = null; while ((s = stdInput.readLine()) != null) { System.out.println(s); } // Read any errors from the attempted command System.out.println("Here is the standard error of the command (if any):\n"); while ((s = stdError.readLine()) != null) { System.out.println(s); }
BufferedReader 활용 , 출력 라인을 반복적으로 읽고 이를 프로그램에 표시할 수 있습니다. 이 접근 방식은 표준 출력과 실행된 명령의 잠재적인 오류를 모두 처리하는 명확하고 효율적인 방법을 제공합니다.
ProcessBuilder와 같은 추가 옵션에 대한 포괄적인 문서와 통찰력을 보려면 Runtime.getRuntime()에 대한 공식 Javadoc을 참조하세요. 프로세스 처리에 대한 고급 제어 기능을 제공합니다.
위 내용은 Java의 Runtime.getRuntime()을 사용하여 명령줄 프로그램의 출력을 어떻게 캡처하고 인쇄할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!