doc = (StyledDocument) textPane.getDocument();
err = textPaneError.getStyledDocument();
try {
textPane.setText("\b");
doc.insertString(textPane.getCaretPosition(), (String) stack.pop(), styleT);
doc.insertString(textPane.getCaretPosition()-1, "\n", styleB);
} catch (BadLocationException e1) {
try {
err.insertString(0, "There is no opened tag", styleR);
} catch (BadLocationException e) {
e.printStackTrace();
}
}
I am trying to print all the exception in a JTextPane. This is my code, it doesn't work. Can somebody told me where is the problem? Thanks