how to read .webarchive file in android

十年热恋 提交于 2019-12-21 05:13:20

问题


I have a requirement like this. I want to read .webarchive File. I have one file with .webarchive extension and i have put that file in asset folder. I want to read that file on android webview. Is it possible?

I googled and found some useful link. This git content is really helpful.In this what it does is, put extracted content of .webarchive file in asset folder and from there data is shown on webview. My query is that i don't want to put extracted content in asset. I have file in .webarchive extension and want it to be opened directly in webview.

i guees zipInputStream is just for file name with zip format extension,and another thing is that i read some where that only that zip files will be extracted with ZipInputStram which have been zipped with WinRar Software,Well in my case what i tried is I have tried to unizip webarchive file with follwing method http://pastie.org/8516247 and here is a log what i am getting

http://pastie.org/8516249,

now from this log you can see command is not even entering inside the while loop at line number 6 which is proved by this:

 log 11-29 13:01:46.903: V/Decompress(19936): 1

And if i am using any zip file inplace of test.warc at line number 4 than command is entering in while loop,that means this ZipInputStream is completely ignoring .WARC file,isn't it?

So if any one have idea how to extract .webarchive file or read .webarchive file without extracting it than please help me.

If any one having idea then please help me

Thanks


回答1:


WebKit Bugzilla

Bug 42716 – Implement WebArchive for Android

That was RESOLVED WONTFIX in 2012.

Still, what's there could be a good starting point, or point of continuation towards an acceptable answer to this question.



来源:https://stackoverflow.com/questions/20258998/how-to-read-webarchive-file-in-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!