我正在使用用户界面,JTextPane
中有一个JPanel
,JTextPane
我使用JTextPane.getStyledDocument().insertString()
添加了字符串。现在我想更新JTextPane
并通过这些词进行罢工。
如何在点击JButton
后更新字词?我不希望JTextPane
中的所有字符串都能获得突破,只是某些字符串。
答案 0 :(得分:0)
在jButton的actionListener中试试这个。
jTextPane.setContentType( "text/html" );
jTextPane.setText("<strike> Words to strike </strike> Words not to Strike");
使用您的逻辑来敲击所需的单词。
您可以使用jTextPane.getSelectedText()
或jTextPane.getText();