자바 민감 문자 처리 클래스,기능 이 매우 강력 합 니 다.

민감 한 문자 의 처리,성능 이 매우 좋 고 파일 방식 으로 코드 를 통 해 민감 한 단 어 를 추가 하 는 등 강력 한 기능 을 할 수 있 습 니 다.
중국 을 개원 하 는 기초 위 에서 일부 방법 을 늘리다
apache 에 의존 하 는 io 와 lang 패키지
package com.wiker;


import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.io.FileUtils;
import org.apache.commons.io.LineIterator;
import org.apache.commons.lang.StringUtils;

/**
 *        
 * @author Wiker
 * @date 2010-1-11   10:51:30
 */
public class BadWord {

	private final static File wordfilter = new File("C:/wordfilter.txt");

	private static long lastModified = 0L;
	private static List words = new ArrayList();
	
	private static void checkReload(){
		if(wordfilter.lastModified() > lastModified){
			synchronized(BadWord.class){
				try{
					lastModified = wordfilter.lastModified();
					LineIterator lines = FileUtils.lineIterator(wordfilter, "utf-8");
					while(lines.hasNext()){
						String line = lines.nextLine();
						if(StringUtils.isNotBlank(line))
							words.add(StringUtils.trim(line).toLowerCase());
					}
				}catch(IOException e){
					e.printStackTrace();
				}
			}
		}
	}
	
	/**
	 *        
	 * @param contents
	 */
	public static String check(String ...contents) {
		if(!wordfilter.exists())
			return null;
		checkReload();
		for(String word : words){
			for(String content : contents)
				if(content!=null && content.indexOf(word) >= 0)
					return word;
		}
		return null;
	}
	
	/**
	 *             
	 *
	 * @param content
	 * @return
	 */
	public static boolean isContain(String content) {
	    if(!wordfilter.exists())
	        return false;
	    checkReload();
	    for(String word : words){
            if(content!=null && content.indexOf(word) >= 0)
                return true;
	    }
	    return false;
	}
	
	/**
	 *            
	 *
	 * @param str         
	 * @param replaceChar     
	 * @return
	 */
	public static String replace(String str,String replaceChar){
	    checkReload();
        for(String word : words){
            if(str.indexOf(word)>=0){
                String reChar = "";
                for(int i=0;i lists() {
		checkReload();
		return words;
	}
	
	/**
	 *      
	 *
	 * @param word
	 * @throws IOException
	 */
	public static void add(String word) throws IOException {
		word = word.toLowerCase();
		if(!words.contains(word)){
			words.add(word);
			FileUtils.writeLines(wordfilter, "UTF-8", words);
			lastModified = wordfilter.lastModified();
		}
	}

	/**
	 *      
	 *
	 * @param word
	 * @throws IOException
	 */
	public static void delete(String word) throws IOException {
		word = word.toLowerCase();
		words.remove(word);
		FileUtils.writeLines(wordfilter, "UTF-8", words);
		lastModified = wordfilter.lastModified();
	}
	
	public static void main(String[] args) throws Exception{
        System.out.println(BadWord.replace("        ","*"));
        System.out.println(BadWord.isContain(" "));
        BadWord.add("  ");
    }
	
}

좋은 웹페이지 즐겨찾기