¿Cómo se comprueba si un archivo existe en Java?
File file = new File("archivo.txt"); file.isExist();
Ninguna es correcta
File file = new File("archivo.txt"); file.exists();
File file = new File("archivo.txt"); file.isFile();