How to add an Image to Form in java

后端 未结 4 1513
梦谈多话
梦谈多话 2021-01-13 22:52

I am designing a form in java using JDeveloper. I am new to JDeveloper. In JDeveloper tool I didn\'t found any option to directly add image to form like .Net. And I don\'t k

4条回答
  •  北海茫月
    2021-01-13 23:09

    As simple as this :

    image = ImageIO.read(new File(path));
    JLabel picLabel = new JLabel(new ImageIcon(image));
    

    Yayy! Now your image is a swing component ! add it to a frame or panel or anything like you usually do! Probably need a repainting too , like

    jpanel.add(picLabel);
    jpanel.repaint(); 
    

提交回复
热议问题