如何通过Java程序读取网页内容?
我计划编写一个 Java 程序来从网站 (http://www.doviz.com) 读取一些汇率,并且想知道仅读取(或读取整体并剥离所需部分)的最佳方法是什么我需要的内容。
任何帮助表示赞赏。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的建议是使用 Jsoup 库
css/jquery 的语法解析外部内容非常容易
使用类似 将 jsoup.jar 库添加到您的类路径并享受吧!
当然是开源且免费使用的。
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.
我建议您实现网页的 RSS 读取机制(以编程方式)并使用标准解析器提取 RSS xml 的内容。
I'd suggest you to implement an RSS reading mechanism of a webpage (programatically) and extract the content of the RSS xml using standard parsers.