I am assuming you are emulating a form by posting the parameters as a query string. If that's the case, the data you're getting back is simply whatever webpage would normally be returned in response to a user query of the website. So to get your data, you'd have to parse that HTML. There is no standard way to do this for all the sites, because each is going to have a different layout. You can use Jsoup http://jsoup.org/ to screen scrape if that's what you want to do, but it's going to be slow and ugly.
JF On Mar 10, 9:30 pm, Kunju Vava <[email protected]> wrote: > hi all > > i think u r not get my qstion correctly,.... in my app i send the url of a > sites using httppost method and attach my keyvalupair as from and to city > (total 20 sites) my question after sending the url , how we get json data > or data of that site , sometimes we want some data that is in any of the > page of that site, how it possible > > for example consider the sitehttp://www.expedia.com wich consists of details > of flight rate bw diff > cities > i want the details of rate bw bnglr newdelhi > > thnks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

