David,
try out !!!
jEditorPane.addHyperlinkListener(new HyperlinkListener() {
public void hyperlinkUpdate(HyperlinkEvent hev) {
try {
if (hev.getEventType == HyperlinkEventType.ACTIVATED)
jEditorPane.setPage(hev.getURL());
}
catch (IOException e) {
// Exceptions thrown...............
}
}});
