你可以看到我的问题是:无法打开日志设备'/dev/log/main':没有这样的文件或目录。我正在写的应用程序,我正在我的nexus 4测试。我该如何解决这个问题?
在Jelly Bean中,Google阻止任意应用程序访问系统/应用程序日志,所以除非你的设备是root,否则你也无法访问日志文件。
见http://commonsware.com/blog/2012/07/12/read-logs-regression.html。
为了允许在设备上访问日志,我创建了一个Logger类,用于我所有的调试日志。它基本上包装android.util.Log,输出所有的Logger。d呼叫日志。到根目录下的一个文件。它还没有输出Android日志中包含的所有信息,但你可以编辑它,把你想要的任何信息放在那里。不要忘记每隔一段时间清理一下文件…
package com.example.app;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import android.os.Environment;
import android.util.Log;
public class Logger
{
private static final String LOGTAG = "Logger";
// Set to false to remove creation of local file
private static final boolean IS_DEBUG_MODE = true;
private static final SimpleDateFormat mSDF = new SimpleDateFormat( "MM-dd hh:mm:ss.SSS" );
public Logger() {
}
public static void d( String tag, String msg ) {
Log.d( tag, msg );
writeToFile( tag, msg );
}
public static void d( String tag, String msg, Throwable th ) {
Log.d( tag, msg, th );
writeToFile( tag, msg, th );
}
private static void writeToFile( String tag, String msg ) {
if( IS_DEBUG_MODE ) {
File root = Environment.getExternalStorageDirectory();
File file = new File( root, "appLog.txt" );
try {
if( root.canWrite() ) {
FileWriter fileWriter = new FileWriter( file, true );
BufferedWriter out = new BufferedWriter( fileWriter );
Date d = new Date();
out.write( mSDF.format( d ) + ": " + tag + " : " + msg );
out.newLine();
out.close();
}
} catch( IOException e ) {
Log.d( LOGTAG, "Couldn't write file: " + e.getMessage() );
}
}
}
private static void writeToFile( String tag, String msg, Throwable th ) {
writeToFile( tag, msg + ", e: " + th.getMessage() );
}
}
我发现了这个:
有一个隐藏的服务菜单,你可以设置登录。的"服务菜单"通过"拨"这个电话号码启动:
*#*#2846579#*#*
它对我有效。
http://www.android-ios-tutorials.com/155/logcat-doesnt-show-messages-error-unable-to-open-log-device/拨打那个电话号码并不能解决问题。
打开新的命令行(cmd)并写入adb shell insmod/system/lib/modules/logger.ko
它将解决问题。(三星Galaxy i9070)