标签: java terminal sudo
我的方法:
public static void executeCommand(String command) { try { Process p = new ProcessBuilder("gnome-terminal", "-e", command).start(); } catch (IOException e) { e.printStackTrace(); } }
如何使用sudo权限启动终端?