zoukankan      html  css  js  c++  java
  • java类敏感词过滤类

    package com.fpx.pcs.prealert.process.service.impl;

    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.Set;

    public class KeywordFilter {

    @SuppressWarnings("rawtypes")
    public static int minMatchTYpe = 1; // 最小匹配规则
    public static int maxMatchType = 2; // 最大匹配规则

    private Map keywordsMap = new HashMap<>();

    @SuppressWarnings({ "rawtypes", "unchecked" })
    public void addKeywords(Set<String> keywordSet) {
    String key = null;
    Map nowMap = null;
    Map<String, String> newWorMap = null;
    // 迭代keyWordSet
    Iterator<String> iterator = keywordSet.iterator();
    while (iterator.hasNext()) {
    key = iterator.next(); // 关键字
    nowMap = keywordsMap;
    for (int i = 0; i < key.length(); i++) {
    char keyChar = key.charAt(i); // 转换成char型
    Object wordMap = nowMap.get(keyChar); // 获取

    if (wordMap != null) { // 如果存在该key,直接赋值
    nowMap = (Map) wordMap;
    } else { // 不存在则,则构建一个map,同时将isEnd设置为0,因为他不是最后一个
    newWorMap = new HashMap<String, String>();
    newWorMap.put("isEnd", "0"); // 不是最后一个
    nowMap.put(keyChar, newWorMap);
    nowMap = newWorMap;
    }

    if (i == key.length() - 1) {
    nowMap.put("isEnd", "1"); // 最后一个
    }
    }
    }
    }

    /**
    * 判断文字是否包含敏感字符
    *
    * @author chenming
    * @date 2014年4月20日 下午4:28:30
    * @param txt
    * 文字
    * @param matchType
    * 匹配规则&nbsp;1:最小匹配规则,2:最大匹配规则
    * @return 若包含返回true,否则返回false
    * @version 1.0
    */
    public boolean isContaintKeyword(String content, int matchType) {
    boolean flag = false;
    for (int i = 0; i < content.length(); i++) {
    int matchFlag = this.checkKeyword(content, i, matchType); // 判断是否包含敏感字符
    if (matchFlag > 0) { // 大于0存在,返回true
    flag = true;
    }
    }
    return flag;
    }

    /**
    * 获取文字中的敏感词
    *
    * @author chenming
    * @date 2014年4月20日 下午5:10:52
    * @param txt
    * 文字
    * @param matchType
    * 匹配规则&nbsp;1:最小匹配规则,2:最大匹配规则
    * @return
    * @version 1.0
    */
    public Set<String> getKeyword(String content, int matchType) {
    Set<String> sensitiveWordList = new HashSet<String>();

    for (int i = 0; i < content.length(); i++) {
    int length = checkKeyword(content, i, matchType); // 判断是否包含敏感字符
    if (length > 0) { // 存在,加入list中
    sensitiveWordList.add(content.substring(i, i + length));
    i = i + length - 1; // 减1的原因,是因为for会自增
    }
    }

    return sensitiveWordList;
    }

    /**
    * 替换敏感字字符
    *
    * @author chenming
    * @date 2014年4月20日 下午5:12:07
    * @param txt
    * @param matchType
    * @param replaceChar
    * 替换字符,默认*
    * @version 1.0
    */
    public String replaceKeyword(String content, int matchType, String replaceChar) {
    String resultTxt = content;
    Set<String> set = getKeyword(content, matchType); // 获取所有的敏感词
    Iterator<String> iterator = set.iterator();
    String word = null;
    String replaceString = null;
    while (iterator.hasNext()) {
    word = iterator.next();
    replaceString = getReplaceChars(replaceChar, word.length());
    resultTxt = resultTxt.replaceAll(word, replaceString);
    }

    return resultTxt;
    }

    /**
    * 获取替换字符串
    *
    * @author chenming
    * @date 2014年4月20日 下午5:21:19
    * @param replaceChar
    * @param length
    * @return
    * @version 1.0
    */
    private String getReplaceChars(String replaceChar, int length) {
    String resultReplace = replaceChar;
    for (int i = 1; i < length; i++) {
    resultReplace += replaceChar;
    }

    return resultReplace;
    }

    /**
    * 检查文字中是否包含敏感字符,检查规则如下:<br>
    *
    * @author chenming
    * @date 2014年4月20日 下午4:31:03
    * @param txt
    * @param beginIndex
    * @param matchType
    * @return,如果存在,则返回敏感词字符的长度,不存在返回0
    * @version 1.0
    */
    @SuppressWarnings({ "rawtypes" })
    public int checkKeyword(String content, int beginIndex, int matchType) {
    boolean flag = false; // 敏感词结束标识位:用于敏感词只有1位的情况
    int matchFlag = 0; // 匹配标识数默认为0
    char word = 0;
    Map nowMap = keywordsMap;
    for (int i = beginIndex; i < content.length(); i++) {
    word = content.charAt(i);
    nowMap = (Map) nowMap.get(word); // 获取指定key
    if (nowMap != null) { // 存在,则判断是否为最后一个
    matchFlag++; // 找到相应key,匹配标识+1
    if ("1".equals(nowMap.get("isEnd"))) { // 如果为最后一个匹配规则,结束循环,返回匹配标识数
    flag = true; // 结束标志位为true
    if (KeywordFilter.minMatchTYpe == matchType) { // 最小规则,直接返回,最大规则还需继续查找
    break;
    }
    }
    } else { // 不存在,直接返回
    break;
    }
    }
    if (matchFlag < 2 || !flag) { // 长度必须大于等于1,为词
    matchFlag = 0;
    }
    return matchFlag;
    }

    public static void main(String[] args) {
    KeywordFilter filter = new KeywordFilter();
    Set<String> keywords = new HashSet<String>();
    keywords.add("主人公");
    keywords.add("红酒");
    keywords.add("中国人民");
    filter.addKeywords(keywords);
    System.out.println("关键字的数量:" + filter.keywordsMap.size());
    String string = "太多的伤感情怀也许只局限于饲养基地 荧幕中的情节,主人公尝试着去用某种方式渐渐的很潇洒地释自杀指南怀那些自己经历的伤感。"
    + "然后 我们的扮演的角色就是跟随着主人公的喜红客联盟 怒哀乐而过于牵强的把自己的情感也附加于银幕情节中,然后感动就流泪,"
    + "难过就躺在某一个人的怀里尽情的阐述心扉或者手机卡复制器一个人一杯红酒一部电影在夜三级片 深人静的晚上,关上电话静静的发呆着。";
    System.out.println("待检测语句字数:" + string.length());
    long beginTime = System.currentTimeMillis();
    Set<String> set = filter.getKeyword(string, 1);
    System.out.println("是否包含关键字:" + filter.isContaintKeyword(string, 1));
    long endTime = System.currentTimeMillis();
    System.out.println("语句中包含关键字的个数为:" + set.size() + "。包含:" + set);
    System.out.println("总共消耗时间为:" + (endTime - beginTime));
    }

    }

  • 相关阅读:
    phpcms后台进入地址(包含No permission resources错误)
    phpmyadmin上传大sql文件办法
    ubuntu彻底卸载mysql
    Hdoj 2602.Bone Collector 题解
    一篇看懂词向量
    Hdoj 1905.Pseudoprime numbers 题解
    The Python Challenge 谜题全解(持续更新)
    Hdoj 2289.Cup 题解
    Hdoj 2899.Strange fuction 题解
    Hdoj 2199.Can you solve this equation? 题解
  • 原文地址:https://www.cnblogs.com/chengjun/p/9003786.html
Copyright © 2011-2022 走看看