Android webview& localStorage的

时间:2011-05-05 14:09:57

标签: android html5 webview local-storage

我遇到了一个webview问题,该问题可能会被HTML5应用访问localStorage。 test.html文件通知我本地 我的浏览器不支持存储(即webview)。如果您有任何建议..

package com.test.HelloWebView; 
import android.app.Activity; 
import android.content.Context; 
import android.os.Bundle; 
import android.util.Log; 
import android.view.KeyEvent; 
import android.webkit.WebChromeClient; 
import android.webkit.WebSettings; 
import android.webkit.WebStorage; 
import android.webkit.WebView; 
import android.webkit.WebViewClient; 
public class HelloWebView extends Activity { 
WebView webview; 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
    webview = (WebView) findViewById(R.id.webview); 
    webview.getSettings().setJavaScriptEnabled(true); 
    webview.setWebViewClient(new HelloWebViewClient()); 
    webview.loadUrl("file:///android_asset/test.html"); 
    WebSettings settings = webview.getSettings(); 
    settings.setJavaScriptEnabled(true); 
    settings.setDatabaseEnabled(true); 
    String databasePath = this.getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath(); 
    settings.setDatabasePath(databasePath);
    webview.setWebChromeClient(new WebChromeClient() { 
    public void onExceededDatabaseQuota(String url, String databaseIdentifier, long currentQuota, long estimatedSize, long totalUsedQuota, WebStorage.QuotaUpdater quotaUpdater) { 
            quotaUpdater.updateQuota(5 * 1024 * 1024); 
        } 
    }); 
} 
public boolean onKeyDown(int keyCode, KeyEvent event) { 
    if ((keyCode == KeyEvent.KEYCODE_BACK) && webview.canGoBack()) { 
        webview.goBack(); 
        return true; 
    } 
    return super.onKeyDown(keyCode, event); 
} 
private class HelloWebViewClient extends WebViewClient { 
    public boolean shouldOverrideUrlLoading(WebView view, String url) { 
        view.loadUrl(url); 
        return true; 
    } 
}
} 

7 个答案:

答案 0 :(得分:465)

缺少以下内容:

settings.setDomStorageEnabled(true);

答案 1 :(得分:40)

在API级别19中不推荐使用

setDatabasePath()方法。我建议您使用这样的存储区域设置:

webView.getSettings().setDomStorageEnabled(true);
webView.getSettings().setDatabaseEnabled(true);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {
    webView.getSettings().setDatabasePath("/data/data/" + webView.getContext().getPackageName() + "/databases/");
}

答案 2 :(得分:24)

重启应用程序后,我也遇到了丢失数据的问题。 添加这有助于:

webView.getSettings().setDatabasePath("/data/data/" + webView.getContext().getPackageName() + "/databases/");

答案 3 :(得分:14)

适用于我的Android 4.2.2的解决方案,使用构建目标Android 4.4W编译:

WebSettings settings = webView.getSettings();
settings.setDomStorageEnabled(true);
settings.setDatabaseEnabled(true);

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {
    File databasePath = getDatabasePath("yourDbName");
    settings.setDatabasePath(databasePath.getPath());
}

答案 4 :(得分:3)

如果您的应用使用多个网页浏览,您仍然会遇到麻烦:在所有网络视图中都没有正确分享localStorage。

如果您想在多个网页浏览中共享相同的数据,唯一的方法是使用java数据库和javascript界面​​进行修复。

github上的

This page显示了如何执行此操作。

希望这有帮助!

答案 5 :(得分:2)

当我在寻找类似的解决方案时,这篇文章最近出现了很多。 webview WebSettings 对象具有 deprecated database path methods since API 19,它现在返回空白值,这意味着无论我们是否在加载 URL 之前在设置中启用它,我们都不能依赖它们来提取网页存储。

为了从网页读取 localStorage 值,我们需要扩展 WebViewClient() 并覆盖 onPageFinished(),您可以在其中评估 webview 上的 javascript,如下所示:

const val JAVASCRIPT_LOCAL_STORAGE_LOOKUP = "javascript:window.localStorage.getItem('KEY');"

...

override fun onPageFinished(view: WebView?, url: String?) {
    super.onPageFinished(view, url)
    view?.let { webView ->
        webView.evaluateJavascript(JAVASCRIPT_LOCAL_STORAGE_LOOKUP) { result ->
            // returns value from 'KEY'
        }
    }
}

只需将 'KEY' 替换为您要访问的存储对象的键。这消除了提供可能与您已有的数据库冲突的任何数据库实现的需要。请注意,这只会从 webview 刚刚完成加载的域中轮询 localStorage。我希望这对其他人有帮助,因为我花了一些时间才弄明白。

答案 6 :(得分:0)

如果您有多个webview,则localstorage无法正常工作 两个建议:

  1. 使用java数据库代替webview localstorage&#34; @Guillaume Gendre&#34;解释。(当然它对我不起作用)
  2. 本地存储工作就像json一样,因此值存储为&#34; key:value&#34; 。你可以将你的浏览器唯一ID添加到它的密钥并使用普通的android localstorage