Hello,
I want to retrieve weather information of 'Chittagong' city of 'Bangladesh' country from "BBC.com/weather" from java application.
but i don't understand where from i should start.
Please give me suggestions.
Thanks,
Shahid
Printable View
Hello,
I want to retrieve weather information of 'Chittagong' city of 'Bangladesh' country from "BBC.com/weather" from java application.
but i don't understand where from i should start.
Please give me suggestions.
Thanks,
Shahid
See posting at:
How to retrieve information from website using java - Java
the web site probably does not have an official web services API/
so then I guess creating some kind of HTTP client (e.g. commons-httpclient) to invoke HTTP GET requests to the site with the appropriate URL and parameters to have it display the page you are interested in.
And then having some kind of heuristic to parse and interpret the HTML response you get from that.
Dang, a crossposter again ...
Jos