我正在 IDE 中运行一个(运行时)示例 java 程序。我的控制台中没有任何内容。
该程序是执行超级用户命令。
try {
Process p = Runtime.getRuntime().exec("su -c xl list"); // or "sudo xl list"
BufferedReader in = new BufferedReader(
new InputStreamReader(p.getInputStream()));
String line = null;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}
^ xl list 是超级用户命令。
如何称呼这个。或者给我建议调用“ipconfig”命令。