i have problem with the "getClass", the eclipse writing this messeage: "cannot make a static reference to the non-static method getClass() from the type Object"
this is the code:
public static void main(String[] args) {
JFrame f = new JFrame();
File path = new File(getClass().getResource("/resources/image.jpg").getFile());
BufferedImage image = ImageIO.read(path);
thank you!