I'm trying to create one simple GUI based testing tool in Java using Eclipse. I have been trying to add icon to my application. Images are present inside the project in a folder. Could you please suggest what mistake I'm doing.
I'm used below two ways, unfortunately both are not helping me. -
1.)  frame.setIconImage(image).
2.) setIconImage(Toolkit.getDefaultToolkit().getImage(getClass().getResource(Filepath)));
Below is the setup of my project in Eclipse -
Below is code which i'm using -
public static void main(String[] args) {
    JFrame frame = new JFrame("Testing Tool");
    // setting close operation
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // sets 500 width and 600 height
    frame.setSize(500, 600);
    try {
           Image image = new ImageIcon("/Project_T/Images/biplane.jpg").getImage();
           frame.setIconImage(image);
        } catch(Exception e) {
           System.out.println("Application icon not found");
        }
     // uses no layout managers
    frame.setLayout(null);
    // makes the frame visible
    frame.setLocationRelativeTo(null);  
    frame.setVisible(true);
}
Since i'm going to create an .exe file for this project using lunach4J, is this the way of keeping files (placing them in a folder of project since I would be using multiple images and files) that ensures the application running on any machine.

