3

2.3.3 から 4.1 までのエミュレーターと実際のデバイスでサービスを実行します (logcat をファイルに書き込みます)。大丈夫。このデバイスで生成された正しいログ:

--------- beginning of /dev/log/main
--------- beginning of /dev/log/system
I/ActivityManager( 3386): START {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000000 cmp=com.android.launcher/com.androWAcivtMaae( 36:IvldakgNme W/ActivityManager( 3386): Duplcaefns eus orcitRod45c6 o.vnotsolet.tiiyilg
I/ActivityManager( 3386): Displayed com.android.calculator2/.Calculator: +9s374ms<br>
.....
.....

しかし、4.1.2 (samsung (google) Nexus S (soju、crespo)、SDK 16、flash 485486、build JZO54K) または 2.3.6 でサービスを実行すると、ログに1 行表示された後にサービスが停止しました。

このデバイスでは、間違ったログが生成されました:

--------- beginning of /dev/log/main

1行だけを印刷し、何も印刷しません....サービスはメモリに残りますが、正しく機能しません...

これは私のコードです

Androidマニフェスト

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.my.logcatt"
          android:versionCode="1"
          android:versionName="0.5">
    <uses-sdk android:minSdkVersion="10" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.READ_LOGS" />
    <application android:theme="@android:style/Theme.NoTitleBar">
     <activity android:name=".ActivityMain" android:label="logcatt">
      <intent-filter>
       <action   android:name="android.intent.action.MAIN" />
       <category android:name="android.intent.category.LAUNCHER" />
       </intent-filter>
     </activity>
     <receiver android:name=".BroadcastBoot" android:enabled="true" android:exported="false">
      <intent-filter>
       <action android:name="android.intent.action.BOOT_COMPLETED" />
      </intent-filter>
     </receiver>
     <service android:name=".ServiceMain" android:enabled="true" />
    </application>
</manifest>

アクティビティ

package com.my.logcatt;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class ActivityMain extends Activity
 {
   @Override
   public void onCreate( Bundle savedInstanceState) 
    {
      super.onCreate( savedInstanceState);
      setContentView( R.layout.main);
      try { startService( new Intent( getApplicationContext(), ServiceMain.class)); }  catch( Exception e) {}
    } 
 }

サービス

package com.my.logcatt;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.InputStreamReader;

import android.app.Service;
import android.content.Intent;
import android.os.Environment;
import android.os.IBinder;


public class ServiceMain extends Service
 {
   public  static Process             procLogcatClean = null;
   public  static Process             procLogcatAM    = null;
   public  static BufferedReader      readerLogcat    = null;

   public static void fLog( String sLogMessage)
    {
      FileWriter     fileLog   = null;
      BufferedWriter bufferLog = null;
      try
        {
          fileLog = new FileWriter( Environment.getExternalStorageDirectory().getAbsolutePath() + "/123.log", true);
          if( fileLog != null)
            {
              bufferLog = new BufferedWriter( fileLog);
              bufferLog.write( sLogMessage + "\r\n");
              bufferLog.flush();
            }
        }
       catch( Exception e) {}
       finally 
        {
          if( bufferLog != null) { try { bufferLog.close(); } catch( Exception e) {} }
          if( fileLog   != null) { try { fileLog.close();   } catch( Exception e)   {} }
        }
    }

   @Override
   public void onCreate()
    {
      super.onCreate();
      startService();
    }

   @Override
   public IBinder onBind(Intent intent) 
    {
      return null;
    }

   @Override
   public void onDestroy()
    {
      super.onDestroy();
    }

   public void startService()
    {
      final Thread thread = new Thread()
       {
         public void run()
          {
            try
              {
                Runtime localRuntimeClear = Runtime.getRuntime();
                String[] sLogcatClear = new String[ 2];
                sLogcatClear[ 0] = "logcat";
                sLogcatClear[ 1] = "-c";
                procLogcatClean = localRuntimeClear.exec( sLogcatClear);
                procLogcatClean.waitFor();

                Runtime localRuntimeAM = Runtime.getRuntime();
                String[] sLogcatAM = new String[ 2];
                sLogcatAM[ 0] = "logcat";
                sLogcatAM[ 1] = "ActivityManager:I *:S";
                procLogcatAM = localRuntimeAM.exec( sLogcatAM);

                readerLogcat = new BufferedReader( new InputStreamReader( procLogcatAM.getInputStream()), 1024);

                String str = "";
                while( true)
                 {
                   str = "";
                   try
                     {
                       if( readerLogcat != null)
                         {
                           str = readerLogcat.readLine();
                           fLog( str);
                         }
                     }
                    catch( Exception e) {}

                   if( str.compareTo( "") == 0)  continue;
                 }
              }
             catch( Exception e) {}
             finally {}
           }
       };
      thread.setPriority( Thread.MAX_PRIORITY);
      thread.start();
   }
 }

なにが問題ですか?

4

1 に答える 1

5

4.1.2. では、root 化されたシステム アプリケーションのみが logcat にアクセスできます。ルート化されている場合は、「su logcat」を使用できます。

https://groups.google.com/forum/?fromgroups=#!topic/android-developers/6U4A5irWang

この行は、処理しない例外をスローすることに気付くと思います(ところで、適切なキャッチがあれば、これを見つけることができたはずです)。

procLogcatAM = localRuntimeAM.exec( sLogcatAM);

それ以外の場合は、Android のバージョンを確認して別のことを行うか、許可の拒否を確認してください。または、アプリを 4.1 未満に制限します。

于 2012-11-02T14:45:40.283 に答える