我使用 Netbeans 的 GUI Builder 为我的应用程序创建了 GUI。我正在尝试显示JFrame
包含JLabel
图像的图像,但无法Image
显示。
我生成的代码:
private void initComponents() {
//...
jLabel1 = new JLabel(new ImageIcon(myPicture));
}
我的课程代码:
public class GUIWindow extends javax.swing.JFrame {
BufferedImage myPicture;
/** Creates new form GUIWindow */
public GUIWindow() throws IOException {
myPicture = ImageIO.read(new File("images/logo.png"));
initComponents();
this.add(jLabel1);
}
}
但我仍然看不到图像...... (图像文件的路径很好)它的......
my-project :
/build
/dist
/images/logo.png
/nbproject
/src (here I have all my source files)
/build.xml
/manifest.mf