如何从java调用外部可执行文件
我是 java 新手...
我在尝试从 java 调用外部可执行文件时遇到问题...
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("cmd /c terminal.exe");
同时尝试调用此错误。
Exited with error code 1
I am new to java...
I have a problem while trying to call external executable file from java...
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("cmd /c terminal.exe");
while trying to call this getting below error..
Exited with error code 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定您的
terminal.exe
位于 Windows 路径中吗?例如,您可以尝试将其替换为
notepad.exe
,看看它是否有效。Are you sure your
terminal.exe
is in the Windows path?You can try and replace it with
notepad.exe
, for example, to see if it works.