码迷,mamicode.com
首页 > Web开发 > 详细

Lucene查看分词结果

时间:2017-09-21 23:19:59      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:查看   param   article   cep   exce   add   tac   ref   字符串   

作者:xsi640

/** 
 * 获取分词结果 
 * @param 输入的字符串 
 * @param 分词器 
 * @return 分词结果 
 */  
public static List<String> getWords(String str,Analyzer analyzer){  
    List<String> result = new ArrayList<String>();  
    TokenStream stream = null;  
    try {  
        stream = analyzer.tokenStream("content", new StringReader(str));  
        CharTermAttribute attr = stream.addAttribute(CharTermAttribute.class);  
        stream.reset();  
        while(stream.incrementToken()){  
            result.add(attr.toString());  
        }  
    } catch (IOException e) {  
        e.printStackTrace();  
    }finally{  
        if(stream != null){  
            try {  
                stream.close();  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  
        }  
    }  
    return result;  
}  

  

Lucene查看分词结果

标签:查看   param   article   cep   exce   add   tac   ref   字符串   

原文地址:http://www.cnblogs.com/lxl57610/p/7571595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!