Convert text/rtf to text/html, text/html to text/plain(text/rtf, text/html을 text로 변환하기)
필자는 전자우편 분석 모듈을 개발하면서 분석 모듈 관리자에서 간단하게 평문 text로 요약하여 보여주는 기능을 구현해야 했습니다. 아래와 같이 간단하게 text/rtf를 text/html로 text/html을 text/plain으로 변환할 수 있습니다. text/rtf를 text/html로 변환하기 추가적인 라이브러리의 필요없이 javax.swing의 JEditorPane을 사용하여 text/rtf를 text/html로 변환이 가능합니다. import javax.swing.JEditorPane; import javax.swing.text.EditorKit; public static String toHTML(File file) throws Exception { JEditorPane p = new JEdit..