我需要一个允许捕获批处理文件退出代码和结果环境的解决方案 - 我的意思是我需要检索批处理中设置的系统环境+变量。
为了更好地理解这里是我提出的。不幸的是,printEnvironment()方法不打印先前在批处理中设置的变量MyVar,而只打印系统变量。有没有办法捕获“MyVar”而不更改批处理文件本身?
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
class Main{
public static void main(String[] args){
String command = "C:/temp/varTest.bat";
MyTask mt = new MyTask(command);
mt.run();
}
}
class MyTask implements Runnable{
private ProcessBuilder pb;
private Process process;
private int exitCode;
private Map<String, String> env;
private String command;
public MyTask(String command){
this.command = command;
}
public void run(){
try {
pb = new ProcessBuilder(command);
process = pb.start();
process.waitFor();
exitCode = process.exitValue();
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}finally{
System.out.println("Execution finished! Exit code: " + exitCode);
printEnvironment();
process.destroy();
}
}
private void printEnvironment(){
env = pb.environment();
List<String> envKeys = new ArrayList<String>(env.keySet());
Collections.sort(envKeys);
for(String key : envKeys){
System.out.println(key+" ==> "+env.get(key));
}
}
}
批处理文件代码:
set MyVar=VAL
答案 0 :(得分:0)
尝试执行此操作: -
Properties props = System.getProperties();
props.list(System.out);
答案 1 :(得分:0)
我想我找到了一种解决方案。不完美,但总比没有好。 为了在批处理执行后得到完整的环境,我使用了不同的方法来启动它。
我只是在cmd中启动了批处理,这允许我将其他命令作为参数传递。接下来,我必须从输出流中读取输出。 对我来说,我也能从批处理中获得正确的退出代码 - 但是我必须使用该条款:
exit /B <exitCode>
这是上面代码的mod:
pb = new ProcessBuilder("cmd.exe", "/c", command, "&&set", "&&exit");
process = pb.start();
pb.redirectErrorStream(true);
process.waitFor();
exitCode = process.exitValue();
stdout = process.getInputStream ();
stdOutReader = new BufferedReader (new InputStreamReader(stdout));
...
String outLine;
while ((outLine = stdOutReader.readLine ()) != null) {
if(outLine.trim().length() > 0){
System.out.println ("OUT STREAM: " + outLine);
}
}
欢迎任何评论和替代解决方案。