=================================
=================================
=================================
자바를 개발 할때.
텍스트 뷰어를 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);
=================================
=================================
=================================
'프로그래밍 관련 > 언어들의 코딩들 C++ JAVA C# 등..' 카테고리의 다른 글
자바 현재 view나 frame 또는 panel 에 들어간 오브젝트 컴포넌트가 있는지 알아보기 (0) | 2015.03.09 |
---|---|
자바 JTextPane 을 html로 변환시 vertically 센터 설정 관련 (0) | 2015.03.09 |
java 개발 프린터 객체 설정된 프린터 가져오기 또는 디폴드 프린터 가져오기 (지정한 프린터 서비스 가져오기) 관련 (0) | 2014.01.23 |
자바 버전7 업데이트 51 로 업데이트 했을때 manifest 보안 에러 관련 ("Missing Application-Name manifest attribute for") (0) | 2014.01.15 |
자바 java url connect get, post (0) | 2013.07.17 |
댓글 영역