How can we retrieve data from a website and parse it into a readable format in the Android application.. means i want to extract data from website and use it in my android application.. it could be any website..

link|improve this question

67% accept rate
Ok fine i will ask the website owners... but what actually want is that for example you have a website in which you publish many articles.. i just want to get the headlines of that article in the app.. you can take this as an example.. – Android Decoded Jul 20 '11 at 13:16
Got the xml file... now need to know how to parse the xml into my android app.. – Android Decoded Jul 20 '11 at 13:20
feedback

3 Answers

You can use jsoup to parse any kind of web page. Here you can find the jsoup library and full source code.

Here is an example: http://desicoding.blogspot.com/2011/03/how-to-parse-html-in-java-jsoup.html

To install in Eclipse:

  1. Right Click on project
  2. BuildPath
  3. Add External Archives
  4. select the .jar file

You can parse according to tag/parent/child very comfortably

link|improve this answer
how to send data to html page – Dr.nik Jul 20 '11 at 11:43
Will this jsoup work in android app?? i dunno how it works.. looks nice.. but will this work in my android app?? – Android Decoded Jul 20 '11 at 13:17
Of course.I am using Jsoup in many android application – Rasel Jul 20 '11 at 13:19
The above answer along with this stackoverflow.com/a/4523525/568169 , works brilliantly! – Anirudh Feb 1 at 3:55
feedback

You can do the HTML parsing but it is not at all recommended instead ask the website owners to provide web services then you can parse that information.

link|improve this answer
feedback

Use the WebView. Simple!!

http://developer.android.com/reference/android/webkit/WebView.html

link|improve this answer
Webview will load the website and he can get full source as string.But he needs the parsed data to use in his application – Rasel Jul 20 '11 at 11:27
Well, we need to know exactly what he wants to filter out and based on that, we could refine our answers. I like @riser 's answer. – Kumar Bibek Jul 20 '11 at 11:34
yes,some web site owners provide data as xml format.That is really great to have.But whatever you are getting in well known format or not you can parse – Rasel Jul 20 '11 at 11:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.