gpt4 book ai didi

java - BufferedImage/ImageIcon 空指针异常

转载 作者:行者123 更新时间:2023-12-02 13:37:26 24 4
gpt4 key购买 nike

图像,https://spooker.cc/spooker3.png

代码:

    private JLabel getSpookerImage() {
URL url;
try {
url = new URL("http://spooker.cc/spooker3.png");
BufferedImage image = ImageIO.read(url);
ImageIcon icon = new ImageIcon(image);
return new JLabel(icon, JLabel.CENTER);
} catch (Exception e) {
e.printStackTrace();
}

return null;
}

异常(exception):

java.lang.NullPointerException
at javax.swing.ImageIcon.<init>(ImageIcon.java:240)
at cc.spooker.ui.tabs.MainTab.getSpookerImage(MainTab.java:63)
at cc.spooker.ui.tabs.MainTab.getDestructPanel(MainTab.java:53)
at cc.spooker.ui.tabs.MainTab.<init>(MainTab.java:35)
at cc.spooker.ui.Frame.<init>(Frame.java:35)
at cc.spooker.Server.<init>(Server.java:21)
at cc.spooker.Main.main(Main.java:8)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

也许是因为图像有空白背景?没有线索,有什么帮助吗?

最佳答案

ImageIO.Read() 方法正在寻找用于图像的图像读取器,但无法找到,因此返回 null。 read() 方法接受 PNG,所以我的猜测是您的图像不是有效的 PNG 文件。尝试将其重新导出为 PNG 或您创建它的方式,以确保它不会出现某种格式错误。我在这里用 PNG 文件测试了类似的代码:

http://mrose.org/cc/png-test.png

而且效果很好。

关于java - BufferedImage/ImageIcon 空指针异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42913991/

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