I'm making an android client for a web site. my app have to go through the website, parse HTML, post some forms, send HTTP requests etc.
What library covering all this stuff you recommand me to use ?
thanks.
|
I'm making an android client for a web site. my app have to go through the website, parse HTML, post some forms, send HTTP requests etc. What library covering all this stuff you recommand me to use ? thanks. |
|||
|
|
|
HttpClient should be good. And parsing can be done using XMLPullParser Here is another approach to Using XPATH and HTML Cleaner to parse HTML / XML I also read here that Jericho HTML Parser works well on Android. it works very efficiently in Android, and has a pretty comprehensive API. There are examples on the site, but to give you an idea of the syntax:
To add third-party libraries into an Android project, you don't link them like you would in Java - you have to extract them into your project. See here: http://stackoverflow.com/questions/1334802/how-can-i-use-external-jars-in-an-android-project Here is HttpClient tutorial: http://hc.apache.org/httpcomponents-client/tutorial/html/ |
||||
|
|
Using For parsing HTML tags you can go with |
|||
|
|
|
I leave here a example of parse a Html with Jericho library. It is in spanish but you can understand. This code extract and create a String with the next characterits of the page html (previusly download, but you can open how YoK answer before me): Tittle : Description: KeyWords of the page Text of the page Links of the page Url of the images of the page
|
|||
|
|