java为什么添加图片后界面没显示?

2024-12-12 03:53:25
推荐回答(5个)
回答1:

JPanel jPanelToolBar = new JPanel(new BorderLayout()){
public void paintComponent(Graphics g) {
super.paintComponent(g);
Image image = paintPicture("1_03");
if (image != null) {
int height = image.getHeight(this);
int width = image.getWidth(this);
if (height != -1 && height > getHeight())
height = getHeight();
if (width != -1 && width > getWidth())
width = getWidth();
g.drawImage(image, 0, 0, getSize().width, getSize().height, this);
}
}
};
private Image paintPicture(String picName){
String path = pathimage+picName+“.png”;//这是图片路径
Image image = null;
try {
image = ImageIO.read(new File(path));
} catch (IOException e) {
log.error(e);
}
return image;
}

回答2:

下面的回答应该是错误的,跟安全没有关系。ImageIcon的实现写了:
When specifying a path, use the Internet-standard forward-slash ("/") as a separator.
当指定一个路径的时候,使用 Internet-standard的“/”作为分隔符,也就是你应该把路径改成这样:

("D:/tuan/5830.png").

回答3:

有可能是你给他设置的width和height的值比较小或者没设置

回答4:

楼主的new ImageIcon("D:\tuan\5830.png");不能引用电脑里的绝对路径哦(因为浏览器的安全问题)。。把图片添加到项目中去。。

回答5:

把图片放在项目里面·再添加就好了