Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以
Runtime.getRuntime().exec("/system/bin/iptables --version");
这确实返回了版本号。
但是当我尝试操纵iptables电话时
iptables
Runtime.getRuntime().exec("su -c /system/bin/iptables -A OUTPUT -d " + IP + " -j DROP)
什么都没发生。
我从adbshell 执行此操作,然后相同的命令有效。
adb
任何想法如何做到这一点?
想通了,你需要root模拟器家伙!