這是我的文件夾中的項目
找不到在NetBeans文件+ GlassFish項目
我想讀取文件書form.html這是我的項目的目錄網頁和把它放在一個串。
這是我打電話給我的功能「getFileContent」:
String content = getFileContent("web/book-form.html");
這是函數:
public String getFileContent(String filePath){
String line, content = new String();
try {
File file = new File(filePath);
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr);
while((line = br.readLine()) != null){
content += line;
}
br.close();
fr.close();
} catch(IOException e){
System.out.println(e.getMessage());
}
return content;
}
我的問題是,NetBeans的告訴我,它無法找到我的文件,書本 - form.html
任何想法?
怎樣的NetBeans告訴你。請將錯誤消息stacktrace添加到問題中。 – unwichtich