这是一个半作业,我已经尝试了很多年但没有运气,基本上我正在做一个类似搜索引擎的程序,我在我的目录中读取文件+他们的子目录和阅读文本文件进行搜索对于一场比赛,我无休止地搜索,但没有明确的答案,所以我很感激,如果有人可以提供帮助。
这是我最好的尝试,但问题是它只从子目录中取出文件并忽略了主/根目录,试图找出原因但不能。
public void indexDirectory(File dir) {
for(int i=0;i<50;i++)
ls[i]=new LinkList();//array of Linked lists to store addresses of each Linked list that has a file
try{
files= dir.listFiles();
for (int i = 0; i < files.length; i++) {
if(files[i].isDirectory())
indexDirectory(files[i]);
if(files[i].isFile()){
if(files[i]!=null)
indexFile(files[i]);
} //end if(isFile)
} //end For loop
}catch(FileNotFoundException e){
System.out.println("error ");
}}
在浏览网页并尝试模仿我发现的内容之后的第二个版本,但没有悲伤地工作。
public void indexDirectory(File dir) {
for(int i=0;i<50;i++)
ls[i]=new LinkList();
try{
if(dir.isFile()){
indexFile(dir); //this method takes each directory and read the words and save them in
// array of linked list
}
else if(dir.isDirectory()){
files= dir.listFiles();
if(files!=null) {
for (int i = 0; i < files.length; i++) {
if(files[i].isDirectory()){
indexDirectory(files[i]); //recursive call
}}
}catch(FileNotFoundException e){
System.out.println("error ");
}}
答案 0 :(得分:1)
在第一个版本中,循环遍历整个file.length并仅检查file.isDirectory,然后检查(即在遍历所有文件/文件夹之后),检查它是否是文件。这就是为什么你无法读取当前目录的文件。只需把
if(files[i].isFile()){
if(files[i]!=null)
indexFile(files[i]); //the method to read from these files and save to array of lists.
}
阻止for循环,它应该在第一个版本中工作。 还有一件事我不明白ls变量的目的。