Exporting Images with JAR in Eclipse (Java)

后端 未结 6 1959
无人及你
无人及你 2020-12-06 22:45

I\'ve been working on a little project that requires external images for display. I\'m not all that familiar with how to use Eclipse and this is my first time attempting to

6条回答
  •  -上瘾入骨i
    2020-12-06 23:17

    Use getResource() to load the images:

    ImageIcon qmarkIcon = new ImageIcon(getClass().getResource("images/mark.gif"));
    

提交回复
热议问题