码迷,mamicode.com
首页 > 编程语言 > 详细

自然语言交流系统 phxnet团队 创新实训 个人博客 (七)

时间:2017-05-22 13:31:45      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:3.0.0   3.0   exception   play   att   sys   exce   arch   des   

 

 

使用Lucene 3.0.0的结构遍历TokenStream的内容.

 

以前版本的Lucene是用TokenStream.next()来遍历TokenStream的内容, 目前的版本稍微修改了一下, 使用下面的的一段程序可以遍历TokenStream的内容

private static void displayTokenStream(TokenStream ts) throws IOException
{
  TermAttribute termAtt = (TermAttribute)ts.getAttribute(TermAttribute.class);
  TypeAttribute typeAtt = (TypeAttribute)ts.getAttribute(TypeAttribute.class);
  
  while (ts.incrementToken())
  {
      System.out.print(termAtt.term());
      System.out.print(‘ ‘);
      System.out.println(typeAtt.type());
  }
  System.out.println(‘ ‘);
}

自然语言交流系统 phxnet团队 创新实训 个人博客 (七)

标签:3.0.0   3.0   exception   play   att   sys   exce   arch   des   

原文地址:http://www.cnblogs.com/qiaoyanlin/p/6888856.html

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