/**去除注释
    * @param 原始内容
    * @return 过滤后内容
    */
    public static String trimComment(String content) {
    String regEx = "<!--[\\s\\S]*?-->";
    Pattern p = Pattern.compile(regEx);
    Matcher m = p.matcher(content);
    String result = content;
    if (m.find()) {
    result = m.replaceAll("");
    }
    return result;
    }