Run the shell command in a Java program to change the permissions of the file. Ability to run on the command line
chmod 777 <span style= "font-family:arial, Helvetica, Sans-serif;" >/data/misc/123.sh "</span>
To change permissions, but when you run this command in Java code, use the
Runtime.getruntime (). EXEC ("chmod 777/data/misc/123.sh");
Invalid, using
String[] command = new String[] {"/system/bin/sh","-c","chmod 777 /data/misc/123.sh"};
Runtime.getRuntime().exec(command);
Same invalid
Finally, by instantiating a DataOutputStream object, the command is implemented in the writing method of this object, such as the following code:
String[] commands = new String[] { "/system/bin/sh", "-c",
"chmod -R 777 /data/misc/123.sh" };
Process process = null;
DataOutputStream dataOutputStream = null;
try {
process = Runtime.getRuntime().exec("su");
dataOutputStream = new DataOutputStream(process.getOutputStream());
int length = commands.length;
for (int i = 0; i < length; i++) {
dataOutputStream.writeBytes(commands[i] + "\n");
}
dataOutputStream.writeBytes("exit\n");
dataOutputStream.flush();
process.waitFor();
} catch (Exception e) {
} finally {
try {
if (dataOutputStream != null) {
dataOutputStream.close();
}
process.destroy();
} catch (Exception e) {
}
}
Java Run shell command, chmod 777 XXX, change the invalid permissions to resolve the method.