JtextPane如何获取html格式的文本内容
采用JtextPane.setpage方式导入了html文件,现在想要实现文字查找功能,采用JtextPane.gettext方式得到的是thml文件的源码,且中文是编码显示的,不是中文符号。怎么可以实现JTextPane的html文件的搜索功能?
String tofindstring= jTextPane1.getText();
String fileContent=jTextPane0.getText();
int pos2 = fileContent.indexOf(tofindstring);
if (pos2 > -1)
{
jTextPane0.select(pos2,pos2+tofindstring.length());
StyledDocument document =(StyledDocument) jTextPane0.getDocument();
//System.out.println(document);
SimpleAttributeSet attributes = new SimpleAttributeSet();
StyleConstants.setForeground(attributes, Color.red);
document.setCharacterAttributes(pos2,tofindstring.length(),attributes ,false);
}