new ImageIcon(url) 失败的错误消息

发布于 2024-09-03 03:44:46 字数 205 浏览 7 评论 0原文

我尝试使用以下命令加载图像:

ImageIcon imageIcon = new ImageIcon(url);

如果我查询加载状态: <代码> imageIcon.getImageLoadStatus(); 它返回 MediaTracker.ERRORED

有没有办法获取错误消息,说明问题是什么?

I try to load an image with:


ImageIcon imageIcon = new ImageIcon(url);

if I query the load status:

imageIcon.getImageLoadStatus();

it returns MediaTracker.ERRORED

Is there a way to get an error message saying what the problem was?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夜未央樱花落 2024-09-10 03:44:46

您可以尝试通过其他方法加载图像。这可能会给你更好的反馈:

Image img = ImageIO.read(url);
ImageIcon icon = new ImageIcon(img);

You can try loading the image via alternate methods. That might give you better feedback:

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