我在這裏看到的源碼爲&,但沒有得到以下代碼的工作。基本上,我希望從文件夾'src'中讀取一個名爲'Administrator'的文本文件。我需要一個相對路徑,因爲這個項目可能會轉移到另一個人。請耐心等待我。如何讀取文本文件的相對路徑
public void staffExists() throws IOException
{
//http://stackoverflow.com/questions/2788080/reading-a-text-file-in-java
BufferedReader reader = new BufferedReader(new FileReader(getClass().getResourceAsStream ("/DBTextFiles/Administrator.txt")));
try
{
String line = null;
while ((line = reader.readLine()) != null)
{
if (!(line.startsWith("*")))
{
System.out.println(line);
}
}
}
catch (IOException ex)
{
ex.printStackTrace();
}
finally
{
reader.close();
}
}
可能重複的[如何從項目中的相對路徑讀取文本文件?](http://stackoverflow.com/questions/3844307/how-to-read-text-file-from-relative- path-in-a-project) –
問題是什麼? –
@ Dooby Inc:已經查看了建議的網址。但我仍然無法工作,請引導我。 – user2945412