Android WebView 抛出 SQLiteException
Posted
技术标签:
【中文标题】Android WebView 抛出 SQLiteException【英文标题】:Android WebView throws SQLiteException 【发布时间】:2011-12-29 01:52:34 【问题描述】:我在我的应用程序中收到来自零星SQLiteException
s 的崩溃报告。我根本不直接与 SQLite 数据库交互。我已将代码跟踪到 WebView
小部件的使用情况。异常的原因不同,但有几个例子如下......
android.database.sqlite.SQLiteException: database is locked: BEGIN EXCLUSIVE;
at android.database.sqlite.SQLiteDatabase.native_execSQL(Native Method)
at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1768)
at android.database.sqlite.SQLiteDatabase.beginTransactionWithListener(SQLiteDatabase.java:558)
at android.database.sqlite.SQLiteDatabase.beginTransaction(SQLiteDatabase.java:512)
at android.webkit.WebViewDatabase.startCacheTransaction(WebViewDatabase.java:603)
at android.webkit.CacheManager.enableTransaction(CacheManager.java:251)
at android.webkit.WebViewWorker.handleMessage(WebViewWorker.java:214)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:143)
at android.os.HandlerThread.run(HandlerThread.java:60)
另一个例子...
java.lang.RuntimeException: Unable to create application com.example.MyApplication: android.database.sqlite.SQLiteException: near "VALUES": syntax error: , while compiling: INSERT INTO cache (VALUES (
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3828)
at android.app.ActivityThread.access$2200(ActivityThread.java:132)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1082)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:150)
at android.app.ActivityThread.main(ActivityThread.java:4293)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.database.sqlite.SQLiteException: near "VALUES": syntax error: , while compiling: INSERT INTO cache (VALUES (
at android.database.sqlite.SQLiteCompiledSql.native_compile(Native Method)
at android.database.sqlite.SQLiteCompiledSql.compile(SQLiteCompiledSql.java:92)
at android.database.sqlite.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:65)
at android.database.sqlite.SQLiteProgram.<init>(SQLiteProgram.java:83)
at android.database.sqlite.SQLiteStatement.<init>(SQLiteStatement.java:41)
at android.database.sqlite.SQLiteDatabase.compileStatement(SQLiteDatabase.java:1231)
at android.database.DatabaseUtils$InsertHelper.getStatement(DatabaseUtils.java:858)
at android.database.DatabaseUtils$InsertHelper.getColumnIndex(DatabaseUtils.java:904)
at android.webkit.WebViewDatabase.getInstance(WebViewDatabase.java:397)
at android.webkit.WebView.<init>(WebView.java:1077)
at android.webkit.WebView.<init>(WebView.java:1054)
at android.webkit.WebView.<init>(WebView.java:1044)
at android.webkit.WebView.<init>(WebView.java:1035)
at com.example.MyApplication.getWebView(MyApplication.java:223)
at com.example.MyApplication.loadUrlInWebView(MyApplication.java:249)
at com.example.MyApplication.onCreate(MyApplication.java:169)
at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:984)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3825)
... 10 more
为什么会发生这些崩溃?有没有其他人遇到过这个问题?
注意:错误报告中的平台都被列为OTHER,所以这可能只发生在模拟器或非官方版本的操作系统中。
【问题讨论】:
【参考方案1】:这可能与 webview DOM 存储有关。请参阅 WebSettings.setDatabaseEnabled 和 WebSettings.setDatabasePath。
http://developer.android.com/reference/android/webkit/WebSettings.html#setDatabaseEnabled(boolean) http://developer.android.com/reference/android/webkit/WebSettings.html#setDatabasePath(java.lang.String)
一个常见的抱怨是 DOM 存储不起作用,通常可以使用如下代码修复:
mWebView.getSettings().setDomStorageEnabled(true);
mWebView.getSettings().setDatabaseEnabled(true);
mWebView.getSettings().setDatabasePath("/data/data/packagename/databases/");
我从未听说过与此相关的崩溃问题,但是当您禁用 DOM 存储以及指定正确的数据库路径(如上所示使用您的应用程序包名)时会发生什么可能值得调查。
这个帖子也可能有帮助:Android - Making Webview DomStorage persistant after app closed
【讨论】:
这似乎很可能是罪魁祸首。无论如何,我都没有加载任何利用 HTML5 数据 API 的 HTML,所以我想知道我是否可以完全关闭 DOM 存储和数据库访问?如果不需要的话,我不想硬编码数据库路径。以上是关于Android WebView 抛出 SQLiteException的主要内容,如果未能解决你的问题,请参考以下文章
FileNotFoundException SQLite 数据库 Android
仅将Webview离线缓存在某些网站中会引发ERR_CACHE_MISS
HttpClient 抛出 ssl 错误,但 webview 和 HttpsURLConnection 不会