是否可以使用javascript读取找到android表内部存储的文件。我知道它可以通过java完成,因为我尝试过并且有效吗?
之所以这样做,是因为用户现在将创建一个事件并将其保存到xml文件中,我需要加载它并使用DHX调度程序在日历上显示信息。
此致
答案 0 :(得分:0)
如果您使用file:// path_to_folder将baseUrl指向文件系统,则可以从webview中的外部存储中读取。
String localPath = "file://" + kmlmo.path; // full path to some folder in file system.
wv.loadDataWithBaseURL(localPath, myHtml, "text/html","UTF-8", "");
现在注意你的html和javascript中的相对网址也会指向文件系统,所以你必须从网上获得的任何东西都必须有完整的http路径。
<img src="http://www.example.com/images/fish.jpg" />
在interweb上,您可以将图像编码为
<img src="images/fish.jpg" />