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

查看:123
本文介绍了在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中执行。 / p>

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天全站免登陆