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
You can try doing it this way:
ImageIcon image = new ImageIcon(getClass().getResource("imageName.png"));
JLabel lblImage = new JLabel(image);
line 1 of the code will get the image ensure that the image is in the same folder you are saving your work