java localstorge,Android如何将值写入HTML5 localstorage?

webView.getSettings().setJavaScriptEnabled(true);

webView.setWebViewClient(new WebViewClient() {

@Override

public void onPageFinished(WebView view, String url) {

String key = "hello";

String val = "world";

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {

webView.evaluateJavascript("localStorage.setItem('"+ key +"','"+ val +"');", null);

} else {

webView.loadUrl("javascript:localStorage.setItem('"+ key +"','"+ val +"');");

}

}

});

第二个变体是使用JavaScriptInterface

初始部分

JavaScriptInterface jsInterface = new JavaScriptInterface(this);

webView.getSettings().setJavaScriptEnabled(true);

webView.addJavascriptInterface(jsInterface, "JSInterface");

JavaScriptInterface

public class JavaScriptInterface {

private Activity activity;

public JavaScriptInterface(Activity activiy) {

this.activity = activiy;

}

public string getData(String someParameter){

//also you can return json data as string and at client side do JSON.parse

if (someParameter == "give me data" && this.activity.data) {

return this.activity.data;

}else{

return null;

}

}

}

Js部分

function ready() {

var data = window.JSInterface.getData("give me data");

localStorage.put("give me data", data)

};

document.addEventListener("DOMContentLoaded", ready);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值