我正在使用Lucene索引XML文件。文件进入Input目录,获取索引并移动到Output目录。
在某些情况下,它工作正常,对于少数文件,它失败了。
当我尝试使用Windows命令提示符渲染文件时,它说已经在使用的文件告诉我java进程仍然连接到文件。
有人可以帮我确保Lucene java进程在编制索引后离开文件吗?
以下是我正在尝试的代码
int originalNumDocs = writer.numDocs();
for (File f : queue) {
FileReader fr = null;
try {
Document doc = new Document();
//===================================================
// add contents of file
//===================================================
fr = new FileReader(f);
doc.add(new TextField("contents", fr));
String targetFileStr = IOUtils.toString(new FileInputStream(f), "UTF-8");
doc.add(new StringField("xmlContent", targetFileStr, Field.Store.YES));
doc.add(new StringField("path", f.getPath(), Field.Store.YES));
doc.add(new StringField("filename", f.getName(), Field.Store.YES));
writer.addDocument(doc);
System.out.println("Added: " + f);
} catch (Exception e) {
System.out.println("Could not add: " + f);
e.printStackTrace();
} finally {
fr.close();
File afile = f;
if(afile.renameTo(new File("C:/Personal/Logging/OutputDir/" + afile.getName()))){
System.out.println("File is moved successful!");
}else{
System.out.println("File is failed to move!");
}
}
}
int newNumDocs = writer.numDocs();
System.out.println("");
System.out.println("************************");
System.out.println((newNumDocs - originalNumDocs) + " documents added.");
System.out.println("************************");
writer.commit();
queue.clear();
我每30秒调用一次这段代码。它在Tomcat中运行。
答案 0 :(得分:0)
行中的FileInputStream
可以:
String targetFileStr = IOUtils.toString(new FileInputStream(f), "UTF-8");
被打开?也许尝试将其更改为:
FileInputStream fileStream = new FileInputStream(f);
String targetFileStr = IOUtils.toString(fileStream, "UTF-8");
并在fileStream.close()
区块中致电finally
。