Java executes shell command, chmod 777 XXX, change the solution of invalid permissions.

Source: Internet
Author: User








Execute the shell command in a Java program, change the permissions of the file, and execute it at the command line
chmod 777 <span style= "font-family:arial, Helvetica, Sans-serif;" >/data/misc/123.sh "</span>


To change permissions, but when executing 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);

Also invalid





Finally, by instantiating a DataOutputStream object, the command is implemented in the writing section of the object, and the code is as follows:






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 executes shell command, chmod 777 XXX, change the solution of invalid permissions.



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.