android 文件 修改权限

//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;
	}

猜你喜欢

转载自44289533.iteye.com/blog/1969667