gpt4 book ai didi

java - 如何将URL类型的图像输入到imageviewer中

转载 作者:行者123 更新时间:2023-11-30 03:52:46 25 4
gpt4 key购买 nike

这是我的代码:

Image img1 = new ImageIcon("http://www.funchap.com/wp-content/uploads/2014/05/Cute-Dog-         Wallpapers.jpg").getImage();"
setLayout(new GridLayout(2,3,5,5));
add(new ImageViewer(img1));

我收到一个错误,无法将 url 输入的图像放入 ImageIcon 中,如何修复它。谢谢。

最佳答案

您需要先创建一个URL对象;你不能只传递一个字符串。例如:

String imagePath = "http://....";
URL url = new URL(imagePath);
BufferedImage img = ImageIO.read(url);
ImageIcon icon = new ImageIcon(img);

关于java - 如何将URL类型的图像输入到imageviewer中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23975663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com