Android uses code to get maximum privileges after cell root _android

Source: Internet
Author: User
Get the highest privileges in code first the phone is root, no root please don't look down.
The first is to write a static method
Copy Code code as follows:

public static Boolean isRoot (String pkgcodepath) {
Process process = NULL;
DataOutputStream OS = null;
try {
String cmd = "chmod 777" + Pkgcodepath;
Process = Runtime.getruntime (). EXEC ("su"); Switch to root account
OS = new DataOutputStream (Process.getoutputstream ());
Os.writebytes (cmd + "\ n");
Os.writebytes ("exit\n");
Os.flush ();
Process.waitfor ();
catch (Exception e) {
return false;
finally {
try {
if (OS!= null) {
Os.close ();
}
Process.destroy ();
catch (Exception e) {
}
}
return true;
}

This method returns True and false.
The time of the call
Copy Code code as follows:

IsRoot (Getpackagecodepath ());

So the phone will prompt the program to obtain the highest permission to agree, if the point is then acquired.
If you want to know the result, you can write.
Copy Code code as follows:

Boolean Rootresult=isroot (Getpackagecodepath ());

Rootresult is the result.
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.