java Applet에서 JEditorPane을 사용할때 브라우저 새로고침을 하면 이런 오류를 발생한다
자바 버그라고 하는데 해결방법은..

[오류내용]
java.lang.NullPointerException
 at javax.swing.text.html.parser.Parser.errorContext(Unknown Source)
 at javax.swing.text.html.parser.Parser.parse(Unknown Source)
 at javax.swing.text.html.parser.DocumentParser.parse(Unknown Source)
 at javax.swing.text.html.parser.ParserDelegator.parse(Unknown Source)
 at javax.swing.text.html.HTMLEditorKit.read(Unknown Source)
 at javax.swing.JEditorPane.setText(Unknown Source)
 at javax.swing.JEditorPane.<init>(Unknown Source)

[해결방법]
ParserDelegator workaround = new ParserDelegator(); //이걸 넣어주면 해결

JEditorPane editor = new JEditorPane(
            "text/html",
            strHtml);

AND