执行时,Sudo命令需要密码。但是我该如何解决日食呢?
public String getMACLinux(String ipaddress) throws IOException {
Runtime r = Runtime.getRuntime();
Process p1 = r.exec("sudo ifconfig en0 ether" + ipaddress);
try
{
p1.waitFor();
}
catch(InterruptedException ii)
{
return ii.toString();
}
->进程p1 = r.exec(“ sudo ifconfig en0 ether” + ipaddress);
每当我在eclipse上使用此行时,该行均无法正常工作。
-> sudo ifconfig en0以太12:23:89:a3:ff 当我直接在终端上使用时,它可以工作;输入密码后。 谁能告诉我如何在日食上使用它?