I am planning to write a Java program to read some exchange rates from a web site (http://www.doviz.com) and was wondering what is the best approach to only read (or read the whole and strip the parts needed) the content that I need.
Any help is appreciated.
My advice is to use the Jsoup library
It’s very easy to parse an external content with a css/jquery-like syntax
Just add the jsoup.jar library to your classpath and enjoy !
Open-Source and free to use of course.