我正在开发一个项目,想要读取调用日志并将其写入文件并将其发送到服务器。我的代码用于读取调用日志,在单独的项目中正常工作。但是在将代码与原始项目集成时会导致NullPointerException。所有权限都经过验证。 这是我的代码
BufferedWriter buf = new BufferedWriter(new FileWriter(logFile, true));
buf.append("Testing ");
buf.newLine();
sb = new StringBuffer();
Uri str = CallLog.Calls.CONTENT_URI;
str.toString();
Log.e("TAG", str.toString());
@SuppressWarnings("deprecation")
Cursor managedCursor =managedQuery(CallLog.Calls.CONTENT_URI, null,
null, null, null);
Log.e("TAG", "in while " + ++i);
int number = managedCursor.getColumnIndex(CallLog.Calls.NUMBER);
int type = managedCursor.getColumnIndex(CallLog.Calls.TYPE);
int date = managedCursor.getColumnIndex(CallLog.Calls.DATE);
int duration = managedCursor.getColumnIndex(CallLog.Calls.DURATION);
sb.append("Call Details :");
Logcat显示此错误 05-15 16:17:14.107:E / AndroidRuntime(20715):致命异常:主要 05-15 16:17:14.107:E / AndroidRuntime(20715):java.lang.RuntimeException:无法启动活动ComponentInfo {com.example.atu_proto / com.example.atu_proto.MenuList}:java.lang.NullPointerException
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2313)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2365)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.ActivityThread.access $ 600(ActivityThread.java:156)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.ActivityThread $ H.handleMessage(ActivityThread.java:1344)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.os.Handler.dispatchMessage(Handler.java:99)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.os.Looper.loop(Looper.java:153)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.ActivityThread.main(ActivityThread.java:5336)
05-15 16:17:14.107:E / AndroidRuntime(20715):at java.lang.reflect.Method.invokeNative(Native Method)
05-15 16:17:14.107:E / AndroidRuntime(20715):at java.lang.reflect.Method.invoke(Method.java:511)
05-15 16:17:14.107:E / AndroidRuntime(20715):at com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:833)
05-15 16:17:14.107:E / AndroidRuntime(20715):at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
05-15 16:17:14.107:E / AndroidRuntime(20715):at dalvik.system.NativeStart.main(Native Method)
05-15 16:17:14.107:E / AndroidRuntime(20715):引起:java.lang.NullPointerException
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.content.ContextWrapper.getContentResolver(ContextWrapper.java:99)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.Activity.managedQuery(Activity.java:1751)
05-15 16:17:14.107:E / AndroidRuntime(20715):at com.example.atu_proto.CallLogsRetrieve.getCallDetails(CallLogsRetrieve.java:89)
05-15 16:17:14.107:E / AndroidRuntime(20715):at com.example.atu_proto.MenuList.onCreate(MenuList.java:78)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.Activity.performCreate(Activity.java:5122)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1081)
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2277) 05-15 16:17:14.107:E / AndroidRuntime(20715):... 11 more
答案 0 :(得分:0)
05-15 16:17:14.107:E / AndroidRuntime(20715):引起:java.lang.NullPointerException
05-15 16:17:14.107:E / AndroidRuntime(20715):在android.content.ContextWrapper.getContentResolver(ContextWrapper.java:99)
...
05-15 16:17:14.107:E / AndroidRuntime(20715):at com.example.atu_proto.CallLogsRetrieve.getCallDetails(CallLogsRetrieve.java:89)
05-15 16:17:14.107:E / AndroidRuntime(20715):at com.example.atu_proto.MenuList.onCreate(MenuList.java:78)
这表示您正在调用MenuList
活动中的其他活动,可能会使用new
创建其他活动。
永远不要使用new
实例化活动。
在这种情况下,似乎CallLogsRetrieve
不应该是一个活动,您可以将Activity
引用作为参数传递给需要它的方法。