美文网首页
Android中去除“富文本”中javascript标签

Android中去除“富文本”中javascript标签

作者: 丶剑起沧澜 | 来源:发表于2018-01-31 14:36 被阅读0次

    话不多说直接上方法:

        public static String deleteHtml(String data) {
        try {
            String regEx_script = "<[^>]+>"; // 定义script的正则表达式
            Pattern p_script = Pattern.compile(regEx_script, Pattern.CASE_INSENSITIVE);
            Matcher m_script = p_script.matcher(htmlReplace(data));
            String a = m_script.replaceAll(""); // 过滤script标签
            return a;
        } catch (Exception e) {
            return "";
        }
    }
    

    可根据上述方法去除富文本中的javascript标签

    相关文章

      网友评论

          本文标题:Android中去除“富文本”中javascript标签

          本文链接:https://www.haomeiwen.com/subject/xuokzxtx.html