在Java中,你可以使用Runtime
类和ProcessBuilder
类来调用Windows命令
方法1:使用Runtime类
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { try { String command = "ipconfig"; // 这里替换为你想要执行的Windows命令 Process process = Runtime.getRuntime().exec(command); BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); String line; while ((line = reader.readLine()) != null) { System.out.println(line); } process.waitFor(); reader.close(); } catch (Exception e) { e.printStackTrace(); } } }
方法2:使用ProcessBuilder类
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Arrays; public class Main { public static void main(String[] args) { try { String[] command = {"ipconfig", "-a"}; // 这里替换为你想要执行的Windows命令和参数 ProcessBuilder processBuilder = new ProcessBuilder(Arrays.asList(command)); processBuilder.redirectErrorStream(true); Process process = processBuilder.start(); BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); String line; while ((line = reader.readLine()) != null) { System.out.println(line); } process.waitFor(); reader.close(); } catch (Exception e) { e.printStackTrace(); } } }
这两个示例都会执行ipconfig
命令并打印输出结果。你可以根据需要替换为其他Windows命令和参数。请注意,这些示例仅适用于Windows操作系统。如果你需要在其他操作系统上执行命令,你需要使用相应操作系统的命令。