如何通过相同的Java代码运行配置文件中存在的命令?我想通过相同的Java代码运行命令行脚本;我可以在硬编码时运行它,但是我想从配置文件中运行这些命令,请告诉我们该怎么做?
try {
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("cmd /c dir");
Process pr = rt.exec("C:/bea/wlserver_10.3/server/bin/setWLSEnv.cmd && java weblogic.Admin -url server:port -username system -password passwd CLUSTERSTATE -clusterName cluster");
BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream()));
String line=null;
while((line=input.readLine()) != null)
{
System.out.println(line);
int exitVal = pr.waitFor();
System.out.println("Exited with error code "+exitVal);
}
}finally{
}}}} catch(Exception e)
如何从xml配置文件中运行exec参数中的命令,我放在那里的命令将在xml配置文件中,我想从那里调用这些命令。
答案 0 :(得分:2)
你的老朋友Runtime.getRuntime.exec()
try {
String str ="C:/somefile.txt";
Process process = Runtime.getRuntime().exec(new String[]{"cmd.exe", "/c",str});
System.out.println(str);
} catch (Exception ex) {}
您也可以参考this tutorial。