admin管理员组文章数量:1340885
I am currently writing an Android app that, among other things, uses text information from websites which I do not own. In addition, some of the pages require authentification.
For some pages I have been able to log in and retrieve the html code using BasicNameValuePairs and an HTTPClient with its associated objects.
Unfortunately, these methods retrieve the webpage source without running any javascript functions that a browser (Android Webview even) would normally run. I need the text that some of these scripts are retrieving.
I've done my research, but everything I've found is guesswork & extremely confusing. I'm okay with ignoring pages that require login for now. Also, I am willing to post any code that may be useful for constructing a solution; It is an independent project.
Any concrete solutions for scraping the html result from javascript calls? An example would be absolutely top-notch.
I am currently writing an Android app that, among other things, uses text information from websites which I do not own. In addition, some of the pages require authentification.
For some pages I have been able to log in and retrieve the html code using BasicNameValuePairs and an HTTPClient with its associated objects.
Unfortunately, these methods retrieve the webpage source without running any javascript functions that a browser (Android Webview even) would normally run. I need the text that some of these scripts are retrieving.
I've done my research, but everything I've found is guesswork & extremely confusing. I'm okay with ignoring pages that require login for now. Also, I am willing to post any code that may be useful for constructing a solution; It is an independent project.
Any concrete solutions for scraping the html result from javascript calls? An example would be absolutely top-notch.
Share Improve this question edited Jun 21, 2012 at 15:45 bhekman asked Jun 19, 2012 at 1:08 bhekmanbhekman 3,27723 silver badges24 bronze badges 1- Note: Many threads I've seen suggest looking into "Rhino", but I haven't found a way to make it work yet. Rhino: mozilla/rhino/tutorial.html – bhekman Commented Jun 19, 2012 at 1:11
2 Answers
Reset to default 8Final Success:
- Rhino. Used this jar file.
Other Things I Tried:
- HttpClient provided by Android
- Cannot run javascript
- HtmlUnit
- 4 hours, no success. Also huge, added 12 mb to my apk.
- SL4A
- Finally piled. Used THIS guide to set-up. Abandoned as overkill for a simple rhino jar.
Things That Might Work:
- Selenium
Further results will be posted. Others results will be added if posted.
Note: many of the options listed above reference each other. I think rhino is included in both sl4a and htmlunit. Also, I think htmlunit contains selenium.
The aforementioned solutions are very slow and restrict you to 1 url (well, not really, but I dare you to scrape 10 urls with Rhino while your user is impatiently waiting for results).
An alternative is to use a cloud scraping solution. You get the benefit of not wasting phone bandwidth on downloading content you won't use.
Try this solution: Bobik Java SDK
It gives you the ability to scrape up to hundreds of sites in a matter of seconds
本文标签: javascriptScraping dynamically generated html inside Android appStack Overflow
版权声明:本文标题:javascript - Scraping dynamically generated html inside Android app - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743655012a2516971.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论