-2

Is it possible to get HTML content in Android and remove what I don't need from it?
For example I want to get the name of the top movies in IMDB(http://www.imdb.com/chart/top), now is it possible just to get the names without anything else?

Sam M
  • 159
  • 1
  • 3
  • 12
  • possible duplicate of [Does IMDB provide an API?](http://stackoverflow.com/questions/1966503/does-imdb-provide-an-api) – nrofis Oct 17 '14 at 20:22
  • @nrofis Actually I don't want for IMDB, I want for a similar site. – Sam M Oct 17 '14 at 20:25

1 Answers1

1

First of all, check if your target site has an API. If it does, fine!
If it doesn't, you can read details from the HTML itself, it's called Web Scraping.
You can find how to do it here.

EDIT:
I see you've found an API and it working with XML. You can find how to work with XML in android here.

Community
  • 1
  • 1
nrofis
  • 8,975
  • 14
  • 58
  • 113