从 Java 执行 Unix 命令

发布于 2024-12-08 15:41:35 字数 444 浏览 0 评论 0原文

在Java中如何执行以下shell命令:

osmosis --read-xml file="planet-latest.osm" --bounding-polygon file="country.poly" --write-xml file="australia.osm"

我尝试用以下代码执行它:

Process proc = Runtime.getRuntime().exec("osmosis --read-xml file="planet-latest.osm" --bounding-polygon file="country.poly" --write-xml file="australia.osm"");
InputStream output = proc.getInputStream();

但似乎Unix命令没有执行。

In Java how can I execute the following shell command:

osmosis --read-xml file="planet-latest.osm" --bounding-polygon file="country.poly" --write-xml file="australia.osm"

I tried executing it with this code:

Process proc = Runtime.getRuntime().exec("osmosis --read-xml file="planet-latest.osm" --bounding-polygon file="country.poly" --write-xml file="australia.osm"");
InputStream output = proc.getInputStream();

but it seems that the Unix command is not executed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谜兔 2024-12-15 15:41:35

您可能需要指定渗透的完整路径。

You may need to specify the complete path to osmosis.

所有深爱都是秘密 2024-12-15 15:41:35

使用运行时是一种已弃用的执行命令的方式。看一下 ProcessBuilder

Using the Runtime is a deprecated way of executing commands. Take a look at ProcessBuilder

酷到爆炸 2024-12-15 15:41:35

尝试转义双“

Process proc = Runtime.getRuntime().exec("osmosis --read-xml file=\"planet-latest.osm\" --bounding-polygon file=\"country.poly\ " --write-xml file=\"australia.osm\"")

try escaping the double "

Process proc = Runtime.getRuntime().exec("osmosis --read-xml file=\"planet-latest.osm\" --bounding-polygon file=\"country.poly\" --write-xml file=\"australia.osm\"")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文