如何将URL站点封装成Java对象?
我有一个 Java/Grails 应用程序,需要“读取”给定 URL 的内容以将其用作图像,主要是动态调整大小。 我的应用程序已经使用基于此帖子的实现将 url 解析为 HTML 代码: http://www.roseindia.net/java/example/java/io/SourceViewer.shtml。
我构建的类返回一个包含 HTML 源代码的 String 对象。现在我想将此字符串写入类似于 BufferedImage 的对象中,以便可以将捕获的 URL 显示到我的新应用程序中。
任何想法,提前致谢!
I hava a Java/Grails app that needs to "read" the contents of a given URL to use it as an image, mostly to be dinamically resized.
My app already parses the url into HTML code using an implementation based on this post: http://www.roseindia.net/java/example/java/io/SourceViewer.shtml.
The class I built returns a String object that contains the HTML source code. Now I want to write this String into an object similar to a BufferedImage so I can display the captured URL into my new application.
any ideas, thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Bluga.net WebThumb 等服务并使用 Glen Smith 的 ThumbnailService 与之交互。
或者,如果您确实想自己执行此操作,可以使用他的缩略图服务器(带有
问候
You can use a service like Bluga.net WebThumb and use Glen Smith's ThumbnailService to interface with it.
Or, if you really want to do this by yourself, you can use his Thumbnail Server (with an older version of the ThumbnailService), that he used to use before migrating to WebThumb ;)
Regards
您可以从 url 创建一个 Image 对象:
You can create an Image object from a url :
如果通过
看看这个:http://www.java-tips.org/java-se-tips/javax.swing /如何在您的应用程序中显示网站页面
If by
you mean display in your app take a look at this : http://www.java-tips.org/java-se-tips/javax.swing/how-to-display-pages-for-a-web-site-in-your-applic.html