我为makefile编写了一个java应用程序。该应用程序遍历文件夹中的文件并逐个读取它们以获取包含文件。但它不会报告所有文件。该应用程序是:
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
public class testCrawler {
/**
* @param args
*/
static String path = "C:\\APP_Eclipse\\TestCrawler\\Test";
static Scanner sc;
static FileReader fr;
static BufferedReader br;
static FileWriter fw;
static BufferedWriter bw;
static String make = "makefile";
static String line;
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
File f = new File(path);
folderCrawler(f);
}
static public void folderCrawler(File f) throws IOException{
File[] files = f.listFiles();
String name;
String[] names;
fw = new FileWriter(make);
bw = new BufferedWriter(fw);
for(File aFile:files){
name = aFile.getName().toLowerCase();
names = name.split("\\.");
bw.write(names[0] + ".o : " + name);
if ((name.endsWith(".c") || (name.endsWith(".h")))){
try{
fr = new FileReader(path + "\\" + name);
br = new BufferedReader(new FileReader(path + "\\" + name));
while((line=br.readLine()) != null){
line = line.trim();
if (line.contains("#include") && line.contains("\"")){
line = line.replace("#include", "");
line = line.replace("\"", "");
line = line.trim();
System.out.println("LINE : " + line);
bw.write(" " + line + " ");
makeMakefile(line);
}
}
}
catch(Exception e){
System.out.println(e.getMessage());
}
bw.write("\n");
}
}
br.close();
bw.close();
}
static public void makeMakefile(String name) throws Exception{
br = new BufferedReader(new FileReader(path + "\\" + name));
while((line=br.readLine()) != null){
if (line.contains("#include") && line.contains("\"")){
line = line.replace("#include", "");
line = line.replace("\"", "");
line = line.trim();
System.out.println("LINE : " + line);
bw.write(" " + line + " ");
makeMakefile(line);
}
}
}
}
读取的文件: test.c包含:
#include "test.h"
#include "test_1.h"
Test.h包含:
#include "test_2.h"
#include "test_3.h"
和文件test_1.h,test_2.h和test_3.h(这些文件什么都不包含)。
make文件应为:
test.o : test.c test.h test_1.h
test.o : test.h test_2.h test_3.h
test_1.o : test_1.h
test_2.o : test_2.h
test_3.o : test_3.h
但是:
test.o : test.c test.h
test.o : test.h test_2.h
test_1.o : test_1.h
test_2.o : test_2.h
test_3.o : test_3.h
我知道错误的来源:当从makeMakefile返回时,line = br.readLine()变为null,我无法读取文件中的网络行。
如何避免这种情况?
非常感谢
EB
答案 0 :(得分:1)
当您致电BufferedReader
时,您正在重新定义makeMakeFile()
,而您正在传递从C文件中读取的行,而不是文件名。因此,当你只有一个#include
时,它总会有效,但之后它将无法工作,因为br
现在指向一个与C代码中的行相对应的文件,这可能不会存在,但你正在抛出一个FileNotFoundException
并在你的主要处理它。
另外,为什么要在主要代码中调用代码,然后立即调用另一个函数?