상세 컨텐츠

본문 제목

자바 현재 리소스의 URL 을 알아내기

본문

반응형

 

 

 

=================================

=================================

=================================

 

 

 

 

 

 

자바를 개발 할때.

 

텍스트 뷰어를 html 을 바꾸고 현재 자바의 리소스의 로컬 URL을 알아서 연결하고 싶을 때 필요하다.

 

현재 자바 프로젝트의 bin 폴더 안의 res폴더에 test.png와 test.html

 

 

//파일이미지 로드

URL fUrl = getClass().getClassLoader().getResource("res/test.png");

ImageIcon icoHint =  new ImageIcon(fUrl);

 

//-----------------------------------------------------------

//html 로드

URL fUrl = getClass().getClassLoader().getResource("res/test.html");

ImageIcon icoHint =  new ImageIcon(fUrl);

 

JTextPane tp = new JTextPane();

tp.setContentType("text/html");

htmlKit = new HTMLEditorKit();

tp.setEditorKit(htmlKit);

tp.setPage(fUrl);

 

 

=================================

=================================

=================================

 

 

 

반응형


관련글 더보기

댓글 영역