In my application, I use a JTextPane
to display some log information. As I want to hightlight some specific lines in this text (for example the error messages), I set the contentType
as "text/html
". This way, I can format my text.
Now, I create a JButton that copies the content of this JTextPane
into the clipboard. That part is easy, but my problem is that when I call myTextPane.getText()
, I get the HTML code, such as :
<html>
<head>
</head>
<body>
blabla<br>
<font color="#FFCC66"><b>foobar</b></font><br>
blabla
</body>
</html>
instead of getting only the raw content:
blabla
foobar
blabla
Is there a way to get only the content of my JTextPane
in plain text? Or do I need to transform the HTML into raw text by myself?
No need to use the ParserCallback. Just use:
textPane.getDocument().getText(0, textPane.getDocument().getLength()) );