哪位到老遇到过从android app上执行route add指令时提示“route: SIOCADDRT: Operation not permitted”这个错误吗?app已获取root权限,且该命令通过adb shell可以执行成功,但是在这个APP 里执行这个shell命令就报这个错误,app执行“busybox route -n”可以成功。请问如何解决呢?跪求指教!!!!!!!!!!!!具体代码如下: public static void addRoute(String dst,String mask,String nextjump){ String dstIP = dst.substring(0,dst.lastIndexOf(".")); String command = "su -c busybox route add -net "+dstIP+".0 netmask "+mask+" gw "+nextjump+" dev eth0"; CommandResult rs = shellCommand(command, true); }