1

我不确定上下文是否是在这里使用的正确词,但我的意思是

cd .\test
test.exe

test.exe 位于文件夹 test 中,我想从文件夹 test 运行它,我知道我可以运行

.\test\test.exe

但我需要从文件夹 test 运行 test.exe。

有没有办法在同一个“上下文”中运行这两个命令?

我努力了:

String cmd1 = "cmd /C cd test";
String cmd2 = "test.exe";
CommandLine cmdl1 = CommandLine.parse(cmd1);
CommandLine cmdl2 = CommandLine.parse(cmd2);
DefaultExecutor exec = new DefaultExecutor();
exec.execute(cmdl1);
exec.execute(cmdl2);

但正如预期的那样,它找不到test.exe

4

1 回答 1

0

我会尝试执行使用运算符连接在一起的两个命令&&

喜欢:

cd .\test && .\test.exe

这将首先更改目录,如果成功,则执行该test.exe目录中的可执行文件。如果更改目录不成功,则命令的后半部分不会执行。

于 2015-07-06T20:50:43.633 回答