XML 파일의 존재 여부를 간단히 찾으려고합니다.Java file.exists()에서 XML 파일을 찾을 수 없습니다.
File f = new File("customers/jim.xml");
File g = new File("customers/jim.txt");
if(f.exists())
{
System.out.println("File f exists!");
}
else
{
System.out.println("File f not found!");
}
if(g.exists())
{
System.out.println("File g exists!");
}
else
{
System.out.println("File g not found!");
}
출력 :
File f not found!
File g exists!
텍스트 파일이 발견되면, XML 아니다 나는이 코드가 있습니다. 두 파일 모두 같은 폴더에 있으며 맞춤법이 맞습니다. 누구든지 내가 뭘 잘못하고 있는지 알아?
'customers' 디렉토리에 파일 이름을 게시 하시겠습니까? – Bill
당신은 당신이 옳다고 생각하는 것을 묘사하고, 그런 다음 우리는 거의 잘못된 것을 얻을 수 없습니다. 더 많은 정보가 필요합니다. ls 또는 dir 결과는 해당 디렉토리 아래에 있습니다. – StarPinkER
파일 이름에 공백이 있습니까? 어느 OS? –