当前位置: 代码迷 >> Java相关 >> JtextPane如何获取html格式的文本内容
  详细解决方案

JtextPane如何获取html格式的文本内容

热度:460   发布时间:2013-04-14 19:15:44.0
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);
            }
搜索更多相关的解决方案: html  document  如何  

----------------解决方案--------------------------------------------------------
没人回答吗?
----------------解决方案--------------------------------------------------------
  相关解决方案