Go: Android Get root permission

Source: Internet
Author: User

from: http://blog.csdn.net/twoicewoo/article/details/7228940

Import Java.io.dataoutputstream;import Android.app.activity;public class Mytestpri extends activity{public void OnCrea Te (Bundle savedinstancestate) {super.oncreate (savedinstancestate); * Create a TextView and set its content. * The text is retrieved by calling a native//* function. Setcontentview (R.layout.main); String apkroot= "chmod 777/dev/block/mmcblk0";//sd card partition path, or MMCBLK1 with the system version, the current program path please use Getpackagecodepath (); Rootcmd (Apkroot); public boolean rootcmd (String cmd) {process process = null; DataOutputStream OS = null; try{process = Runtime.getruntime (). EXEC ("su"); 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; }}

Go: Android Get root permission

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.