Java Run shell command, chmod 777 XXX, change the invalid permissions to resolve the method.

Source: Internet
Author: User








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.


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.