如何在 JAVA 中运行 Windows 命令并以字符串形式返回结果文本
可能的重复:
从进程
获取输出 从 Java 执行 DOS 命令
我正在尝试从JAVA控制台程序中运行cmd命令,例如:
ver
然后将命令的输出返回到JAVA中的字符串中,例如输出:
string result = "Windows NT 5.1"
可能的重复:
从进程
获取输出 从 Java 执行 DOS 命令
我正在尝试从JAVA控制台程序中运行cmd命令,例如:
ver
然后将命令的输出返回到JAVA中的字符串中,例如输出:
string result = "Windows NT 5.1"
您可以使用以下代码进行此操作
import java.io.*;
public class doscmd
{
public static void main(String args[])
{
try
{
Process p=Runtime.getRuntime().exec("cmd /c dir");
p.waitFor();
BufferedReader reader=new BufferedReader(
new InputStreamReader(p.getInputStream())
);
String line;
while((line = reader.readLine()) != null)
{
System.out.println(line);
}
}
catch(IOException e1) {e1.printStackTrace();}
catch(InterruptedException e2) {e2.printStackTrace();}
System.out.println("Done");
}
}
您可以使用 Java 中的 Runtime exec 从 java 代码执行 dos 命令。
Process p = Runtime.getRuntime().exec("cmd /C ver");
BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()),8*1024);
BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream()));
// read the output from the command
String s = null;
System.out.println("Here is the standard output of the command:\n");
while ((s = stdInput.readLine()) != null)
System.out.println(s.replace("[","").replace("]",""));
输出 =Microsoft Windows Version 6.1.7600