개발바닥곰발바닥
반응형
자바 jar에 이미지까지 포함시키기
JAVA/etc 2021. 5. 3. 02:13

연습용 자바 swing 소스를 Runnable JAR file로 Export 했는데 이미지가 표시되지 않는 문제가 있어 찾아본 결과 ImageIcon 을 만들 때 경로 설정을 다른 방법으로 해주면 해결이 된다. // 기존 방법 private ImageIcon[] imgs = { new ImageIcon("images/arrow1.png"), new ImageIcon("images/arrow2.png")}; // jar로 만들어도 이미지가 표시되게 하는 방법 private ImageIcon[] imgs = { new ImageIcon(getClass().getClassLoader().getResource("arrow1.png")), new ImageIcon(getClass().getClassLoader()..

반응형