- 浏览: 3170 次
- 来自: ...
-
最新评论
-
karbo:
怎么没有解决办法!
lucene 中的删除deleteDocuments -
zhangliang_88:
解决方法呢 晕。。。。
lucene 中的删除deleteDocuments -
tor:
也不把解决方法贴下
lucene 中的删除deleteDocuments
文章列表
从昨天开始,自己又着手搞更新.好象lucene中没有很好的方法去更新.只好用deleteDocuments把它删除了.再添加进去.
不过自己按书写的代码如下:
public static boolean deletSomeField(String id) throws IOException {
IndexReader reader = null;
try {
reader = IndexReader.open(Constants.TRAIN1DOCUMENT);
int i = reader.deleteDocuments(new Term(Constants.T ...
- 2007-06-16 15:05
- 浏览 3384
- 评论(3)