我正在尝试更改我的应用程序中的模拟器或设备的IP地址
这段代码:
try {
Runtime.getRuntime().exec(new String[]{"su","-c","ifconfig eth0 xx.xx.xx.xx"});
} catch (IOException e) {
e.printStackTrace();
}
没有异常被捕,但是基本的IP地址没有改变! 谁知道为什么?
答案 0 :(得分:0)
只要我知道,Android上的ifconfig功能非常有限,大多数人建议使用netcfg。