Eclipse's workspace: Shall I put my images in 'src' or 'bin' folder?

前端 未结 7 1704
梦谈多话
梦谈多话 2020-12-17 01:39

I\'m working in a project in Java and sometimes all my images randomly dissapeared from the project\'s bin folder. It is getting very annoying because I have to put everythi

7条回答
  •  隐瞒了意图╮
    2020-12-17 02:12

    I had the same problem So I just past image in both folders 'bin' and 'src' in my case I have this code:

    Image image2 = new Image(getClass().getResourceAsStream("IMAGES/Main-icon.png"));
    

    run App and its will work

提交回复
热议问题