在Java中运行命令行
java -jar map.jar time.rel test.txt debug
我可以用命令运行它,但是我不能在Java中运行它。
回答:
Runtime rt = Runtime.getRuntime();Process pr = rt.exec("java -jar map.jar time.rel test.txt debug");
以上是 在Java中运行命令行 的全部内容, 来源链接: utcz.com/qa/426941.html
java -jar map.jar time.rel test.txt debug
我可以用命令运行它,但是我不能在Java中运行它。
Runtime rt = Runtime.getRuntime();Process pr = rt.exec("java -jar map.jar time.rel test.txt debug");
以上是 在Java中运行命令行 的全部内容, 来源链接: utcz.com/qa/426941.html