0

I want to show some part of my college site into my app (like news part only). Site is developed using JavaScript. Tell me how could I achieve this. I know Java quite well.

halfer
  • 19,824
  • 17
  • 99
  • 186
  • Hi there. This site is really for specific programming problems; if you are wanting to know the broad way in which to do something, there's no substitute for thorough research using a search engine. Start with searching your title - there'll be plenty of results. – halfer Sep 28 '13 at 10:11
  • possible duplicate of [Web scraping with Java](http://stackoverflow.com/questions/3202305/web-scraping-with-java) – SMUsamaShah Aug 18 '14 at 08:58

2 Answers2

0

use jsoup and httpclient that's all you need

Foo Bar User
  • 2,401
  • 3
  • 20
  • 26
0

If you need javascript support, HtmlUnit is a very good solution for a headless browser. There also exists a framework that allows you to parallelize downloads over proxies using that: https://github.com/subes/invesdwin-webproxy

subes
  • 1,832
  • 5
  • 22
  • 28