如何将URL站点封装成Java对象?

发布于 2024-10-21 10:35:43 字数 380 浏览 5 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酷炫老祖宗 2024-10-28 10:35:43

您可以使用 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

万水千山粽是情ミ 2024-10-28 10:35:43

您可以从 url 创建一个 Image 对象:

URL url = new URL("http://url.to/your/image.jpg";
Image image = Toolkit.getDefaultToolkit().createImage(url)

You can create an Image object from a url :

URL url = new URL("http://url.to/your/image.jpg";
Image image = Toolkit.getDefaultToolkit().createImage(url)
滥情稳全场 2024-10-28 10:35:43

If by

take a 'print screen' of the this site

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文