new ImageIcon(url) 失败的错误消息
我尝试使用以下命令加载图像:
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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试通过其他方法加载图像。这可能会给你更好的反馈:
You can try loading the image via alternate methods. That might give you better feedback: