gpt4 book ai didi

java - 如何从文件正确创建 BufferedImage?

转载 作者:行者123 更新时间:2023-12-02 03:54:09 25 4
gpt4 key购买 nike

我有这个代码:

package test;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.WindowConstants;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

public class SwingSandbox {

public static void main(String[] args) throws IOException {
JFrame frame = buildFrame();

final BufferedImage image = ImageIO.read(new File("C:\\Projects\\Test\\src\\test\\InterestCalcGraphic.jpg"));

JPanel pane = new JPanel() {
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(image, 0, 0, null);
}
};


frame.add(pane);
}


private static JFrame buildFrame() {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setSize(200, 200);
frame.setVisible(true);
return frame;
}


}

当我运行它时,我收到以下错误消息:

    Exception in thread "main" javax.imageio.IIOException: Can't read input file!
at javax.imageio.ImageIO.read(ImageIO.java:1301)
at test.SwingSandbox.main(SwingSandbox.java:17)

错误消息让我相信我的文件路径不正确,但图像存储在我的文件目录中的 Test - src - test 下。我做错了什么?

最佳答案

ImageIO 甚至没有尝试加载您的图像文件。您的文件本身有问题。例如。你的路径不正确。尝试调用这个

File f = new File("C:\\Projects\\Test\\src\\test\\InterestCalcGraphic.jpg");
boolean value = f.canRead();

value 变量的 boolean 值是什么?如果false检查您的图像文件路径、文件名拼写错误等。

关于java - 如何从文件正确创建 BufferedImage?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35638104/

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