여기에 소스를 읽었으니 &이지만 다음 코드는 작동하지 않습니다. 기본적으로 '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 : 제안 된 URL을 살펴 봤습니다. 그러나 나는 아직도 그것을 작동시킬 수 없다. 친절하게 나를 인도 해주세요. – user2945412