如何在android中显示sdcard的html文件

时间:2011-12-13 10:45:13

标签: android html android-sdcard

我将如何在Web视图中显示html文件我的html文件在sdcard("/Citations/DirectTaxLaws/1950/rtffiles/[1950]018ITR00812(All).rtf")里面我想在android模拟器中显示它的Web视图...但是我无法显示它显示的一些错误,我有试过这段代码

WebView detailsLink = (WebView) findViewById(R.id.web_view);
detailsLink.loadurl(" /Citations/DirectTaxLaws/1950/rtffiles/[1950]018ITR00812(All).rtf");

我无法设置SD卡的路径,我该怎么做?

2 个答案:

答案 0 :(得分:4)

请试试这个

webView.loadUrl("file:///sdcard/index.html");

答案 1 :(得分:0)

尝试

detailsLink.loadurl("file:///mnt/sdcard/Citations/DirectTaxLaws/1950/rtffiles/[1950]018ITR00812(All).rtf");