我正在尝试使用 Java 制作一个非常基本的游戏,但无法在JFrame
. 它过去对我有用,但现在不行,我看不出我做错了什么。
我已经尝试打印当前工作目录并更改我的图像以匹配它。问题很可能是没有获取图像,因为我的(文件查找器或文件阅读器或类似的东西)可以毫无问题地找到它,但我无法正确地将它(ImageIcon
)添加到JLabel
,或者添加到JFrame
.
这是我的代码...
JFrame frame = new JFrame("no image");
ImageIcon image = new ImageIcon("C:/Documents and Settings/user/Desktop/hi/xD/JavaApplication2/image.png");
JLabel imagelabel = new JLabel(image);
frame.add(imagelabel);
JFrame
已经setVisible(true)
和pack()
。_
有人可以帮我理解什么是错的。