Android Read Log Demo

Source: Internet
Author: User

The key is a service:

public class Systemservice extends Service {


@Override
Public IBinder Onbind (Intent Intent) {
TODO auto-generated Method Stub
return null;
}


@Override
public void OnCreate () {
Collects logs that read the user.
New Thread () {
public void Run () {
try {
File File = new file (Environment.getexternalstoragedirectory (), "Log.txt");
FileOutputStream fos = new FileOutputStream (file);
Process process = Runtime.getruntime (). EXEC ("Logcat");
InputStream is = Process.getinputstream ();
BufferedReader br = new BufferedReader (
New InputStreamReader (IS));
String Line;
while (line = Br.readline ()) = null) {
if (Line.contains ("I/activitymanager")) {
Fos.write (Line.getbytes ());
Fos.flush ();
}
}
Fos.close ();
} catch (Exception e) {
TODO auto-generated Catch block
E.printstacktrace ();
}
};
}.start ();


Super.oncreate ();
}


}


Permissions Required:


<uses-permission android:name= "Android.permission.READ_LOGS"/>
<uses-permission android:name= "Android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name= "Android.permission.INTERNET"/>

Android Read Log Demo

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.