我为 Windows 编写了一个 Java 命令行应用程序,并将该 cmd 的结果存储在一个字符串变量中。
我的问题是:是否可以从存储 cmd 输出的变量中获取子字符串?
如果在 cmd 输出字符串变量中找到子字符串,我想放置一个创建操作的语句。
以下是应用程序类的方法:
public static void main(String[] args) throws IOException, InterruptedException
{
runWndCommand("ping 192.168.11.3");
}
public static void runWndCommand(String cmd) throws IOException, InterruptedException
{
Runtime runtime = Runtime.getRuntime();
Process p = runtime.exec(new String[] { "cmd.exe", "/C", cmd });
Scanner reader = new Scanner(p.getInputStream());
while (reader.hasNext())
{
String r=reader.nextLine();
System.out.println(r);
}
p.waitFor();
}