Android uses code to erase app data and restart devices

Source: Internet
Author: User
/** * Use code to clear the app's data * Usually when we clear the app's data, we mostly find the app in the settings * and then select its erase data. The code implementation is given below. *  NOTE: * 1 device requires root * 2 Note a newline is required at the end of the command \ n *   This is equivalent to the fact that we usually enter a command in DOS and then wrap it. *   otherwise the command will not execute. */private void Cleandata (S Tring PackageName) {try {System.out.println ("---> 9527 start clearing" +packagename); Process su= runtime.getruntime (). EXEC ("su"); String cmd = "rm-r" + "/data/data/" +packagename;cmd = cmd + "\ n exit\n";//The following two sentences represent restarting the device//string cmd = "reboot";//cmd = cmd + "\ n exit\n "; Su.getoutputstream (). Write (Cmd.getbytes ()), if ((Su.waitfor ()! = 0)) {throw new SecurityException ();}} catch (Exception e) {System.out.println ("---> 9527 clear Data e=" +e.tostring ());}}

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.