获取手机是否root信息时间:2023-03-08 15:21:55 private String isRoot(){ String bool = "Root:false"; try{ if ((!new File("/system/bin/su").exists()) && (!new File("/system/xbin/su").exists())){ bool = "Root:false"; } else { bool = "Root:true"; } } catch (Exception e) { } return bool; }