gpt4 book ai didi

java.io.IOException : read past EOF Lucene in Java with Eclipse

转载 作者:太空宇宙 更新时间:2023-11-04 13:44:44 26 4
gpt4 key购买 nike

我想要做什么:我有一个使用 Lucene 创建的本地索引,我需要为索引中的所有文档获取一个值。

我的问题是我无法读取索引!

我的程序:

public class index {
public static void main(String[] args) {
try {
read();
} catch (CorruptIndexException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

public static void read() throws CorruptIndexException, IOException {
System.out.println("step");
IndexReader r = IndexReader.open("D:/index/DEV_IdxDOSSIER/data/index");

System.out.println("step");
int num = r.numDocs();
for (int i = 0; i < num; i++)
{
System.out.println("step3");
Document d = r.document(i);
System.out.println("DC_KEY: ");
System.out.println(d.get("DC_KEY"));
}
/*if (!r.isDeleted(i))
{
Document d = r.document(i);
System.out.println("d=" +d);
}*/

r.close();
System.out.println("read doesn't work yet!");
}
}

这是我得到的错误:

step1
java.io.IOException: read past EOF
at org.apache.lucene.store.BufferedIndexInput.refill(BufferedIndexInput.java:151)
at org.apache.lucene.store.BufferedIndexInput.readBytes(BufferedIndexInput.java:116)
at org.apache.lucene.store.BufferedIndexInput.readBytes(BufferedIndexInput.java:92)
at org.apache.lucene.store.ChecksumIndexInput.readBytes(ChecksumIndexInput.java:43)
at org.apache.lucene.store.IndexInput.readString(IndexInput.java:124)
at org.apache.lucene.index.SegmentInfo.<init>(SegmentInfo.java:148)
at org.apache.lucene.index.SegmentInfos.read(SegmentInfos.java:234)
at org.apache.lucene.index.DirectoryIndexReader$1.doBody(DirectoryIndexReader.java:95)
at org.apache.lucene.index.SegmentInfos$FindSegmentsFile.run(SegmentInfos.java:653)
at org.apache.lucene.index.DirectoryIndexReader.open(DirectoryIndexReader.java:115)
at org.apache.lucene.index.IndexReader.open(IndexReader.java:316)
at org.apache.lucene.index.IndexReader.open(IndexReader.java:206)
at indexation.index.read(index.java:152)
at indexation.index.main(index.java:49)

PS:我是 Lucene 的新手。我一天前开始工作,这是为了一份工作。

最佳答案

有一个demo Lucene 发行版中包含有关如何搜索索引的信息。您可能想看一下。

关于java.io.IOException : read past EOF Lucene in Java with Eclipse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30982388/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com