13

我从 google play msg 收到我的应用程序崩溃,在 msg

java.lang.NullPointerException
at android.webkit.WebViewDatabase.initDatabase(WebViewDatabase.java:234)
at android.webkit.WebViewDatabase.init(WebViewDatabase.java:212)
at android.webkit.WebViewDatabase.access$000(WebViewDatabase.java:40)
at android.webkit.WebViewDatabase$1.run(WebViewDatabase.java:193)

我在 google 或 stackoverflow 中没有找到类似的问题,所以我不知道为什么会出现这种问题,但我知道 webview 的原因。

4

3 回答 3

1

看起来与这里的问题相同(加上潜在的解决方法):

https://code.google.com/p/android/issues/detail?id=35204

我在这里找到了 WebViewDatabase 的代码(它不是完全相同的版本,但有足够的上下文来获取图片):

http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.1_r1/android/webkit/WebViewDatabase.java#WebViewDatabase.initDatabase%28android.content.Context% 29

如果您查看 initDatabase() 的代码,在我用“****”标记的行上有一个潜在的 NPE。请注意,以下行检查 NULL,所以它看起来有点笨:

 private void initDatabase(Context context) {
     try {
         mDatabase = context.openOrCreateDatabase(DATABASE_FILE, 0, null);
     } catch (SQLiteException e) {
         // try again by deleting the old db and create a new one
         if (context.deleteDatabase(DATABASE_FILE)) {
             mDatabase = context.openOrCreateDatabase(DATABASE_FILE, 0,
                     null);
         }
     }

     mDatabase.enableWriteAheadLogging(); ****

     // mDatabase should not be null,
     // the only case is RequestAPI test has problem to create db
     if (mDatabase == null) {
         mInitialized = true;
         notify();
         return;
于 2014-05-01T00:31:40.397 回答
0

尝试检查任何调用它的代码android.webkit.WebViewDatabase.initDatabase() 是否有错误处理或在某些情况下打开数据库有任何问题?

你有错误处理/对象检测吗?你能显示几行代码吗?

于 2014-01-23T10:15:01.867 回答
0

我检查了提供的链接、android 源代码、内部崩溃分析,似乎问题只存在于 android 4.0 - 4.0.4。我已经在 android 2.3.6、4.0.3、4.4.2 上测试了我的建议,它似乎是正确的。因此,我完成了针对此问题的以下解决方法:

package com.android.example;

import android.content.Context;
import android.os.Build;

public class WebViewUtil {

    private static final String WEBVIEW_DATABASE_FILE = "webview.db";

    public static boolean isWebViewCorrupted(Context context) {
        try {
            int currentSdk = Build.VERSION.SDK_INT;
            if (currentSdk == Build.VERSION_CODES.ICE_CREAM_SANDWICH
                    || currentSdk == Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) {
                try {
                    context.openOrCreateDatabase(WEBVIEW_DATABASE_FILE, 0, null);
                } catch (Throwable t) {
                    // try again by deleting the old db and create a new one
                    context.deleteDatabase(WEBVIEW_DATABASE_FILE);
                    context.openOrCreateDatabase(WEBVIEW_DATABASE_FILE, 0, null);
                }
            }
            return false;
        } catch (Throwable t) {
        }
        return true;
    }
}
于 2014-07-30T08:33:28.777 回答