commons-exec: Executing a program on the system PATH?

↘锁芯ラ 提交于 2019-12-23 11:49:34

问题


I'm trying to execute a program (convert from ImageMagick, to be specific) whose parent folder exists on the path. Ergo, when I run convert from the command line, it runs the command. The following, however, fails:

String command = "convert"
CommandLine commandLine = CommandLine.parse(command);
commandLine.addArgument(...)
...
int exitValue = executor.execute(commandLine);

If I specify the full path of the convert executable (C:\Program files\...) then this code works. If I don't do this, I get an exception thrown with exit value 4.

How do I get commons-exec to recognize the system path?


回答1:


I've run into issues like this before where the system set PATH is not what the java process is seeing. As a way to debug this you can print out what the java process sees as the path env variable by using:

EnvironmentUtils.getProcEnvironment();

Which will give you a map and you can look to see if Java can see the path variable. If it is not there then the next step would be to figure out why you can't see it.

If it is there I would try running your excutor.execute command as follows:

int exitValue = executor.execute(commandLine, EnvironmentUtils.getProcEnvironment());


来源:https://stackoverflow.com/questions/2693020/commons-exec-executing-a-program-on-the-system-path

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!