Java에서 명령줄 실행
Java에서는 Runtime.exec() 메서드를 사용하여 명령줄에 액세스할 수 있습니다. 이 방법을 활용하면 Java 애플리케이션은 터미널에서 수동 실행이 필요한 명령줄을 실행할 수 있습니다.
문제:
사용자가 다음 명령줄을 실행하려고 합니다. 자바 내에서 애플리케이션:
java -jar map.jar time.rel test.txt debug
해결책:
Java에서 이 명령줄을 실행하려면 다음 단계를 따르세요.
import java.lang.Runtime; import java.lang.Process; public class CommandLineRunner { public static void main(String[] args) { Runtime rt = Runtime.getRuntime(); Process pr = rt.exec("java -jar map.jar time.rel test.txt debug"); // Handle the process output or error (if any) here pr.waitFor(); // Wait for the command to finish } }
자세한 내용은 다음과 같습니다. Runtime.exec()를 사용하여 다음 링크를 참조하세요. http://docs.oracle.com/javase/7/docs/api/java/lang/Runtime.html
위 내용은 Java에서 명령줄을 어떻게 실행할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!