当我使用WebView.load URL加载该html文件时,我的html文件中的javascript代码可以正常运行。但我想使用WebView.loadData,然后我在String中读取该html文件,并使用WebView.loadData。 html中的JavaScript代码无法成功运行。谁能帮我?感谢。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webView = (WebView) findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
try {
InputStream is=this.getAssets().open("COPY-ME.html");
ByteArrayOutputStream baos=new ByteArrayOutputStream();
int i=1;
while ((i=is.read())!=-1) {
baos.write(i);
}
data=baos.toString();
} catch (IOException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
webView.loadData(data, "text/html", "utf-8");
答案 0 :(得分:1)
尝试使用以下代码加载您的html文件
webView.loadUrl("file:///android_asset/COPY-ME.html");
建议您将资源名称保留为小写字母。