我尝试使用以下内容加载图片:
ImageIcon imageIcon = new ImageIcon(url);
如果我查询加载状态:
imageIcon.getImageLoadStatus();
它返回MediaTracker.ERRORED
有没有办法收到错误消息说明问题是什么?
答案 0 :(得分:0)
您可以尝试通过其他方法加载图像。这可能会给你更好的反馈:
Image img = ImageIO.read(url);
ImageIcon icon = new ImageIcon(img);