在 Java 中运行命令行 [英] Running Command Line in Java

查看:36
本文介绍了在 Java 中运行命令行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法在 Java 应用程序中运行这个命令行?

Is there a way to run this command line within a Java application?

java -jar map.jar time.rel test.txt debug

我可以用命令运行它,但我不能在 Java 中运行它.

I can run it with command but I couldn't do it within Java.

推荐答案

Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("java -jar map.jar time.rel test.txt debug");

http://docs.oracle.com/javase/7/docs/api/java/lang/Runtime.html

这篇关于在 Java 中运行命令行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆