//shPath = /system/bin/sh
//shellCommand = chmod 0777 路径
public static int executeShell(String shellCommand) {
int success = 0;
try {
Process pid = null;
String[] cmd = { shPath, "-c", shellCommand };
// Shell命令を執行
pid = Runtime.getRuntime().exec(cmd);
if (pid != null) {
pid.waitFor();
} else {
}
success = 1;
} catch (Exception e) {
}
return success;
}