Descripción
Método que crea un fichero vacío. Siempre y cuando el fichero no exista. Si el fichero es creado satisfactoriamente devuelve true, en caso de que el fichero exista devuelve false.
Sintaxis
public boolean createNewFile() throws IOException
Excepciones
SecurityException, IOException
Clase Padre
Ejemplo
File fichero = new File("c:\\temp\\miFichero.txt");
try {
// A partir del objeto File creamos el fichero físicamente
if (fichero.createNewFile())
System.out.println("El fichero se ha creado correctamente");
else
System.out.println("No ha podido ser creado el fichero");
} catch (IOException ioe) {
ioe.printStackTrace();
}
Líneas de Código
Vídeos Java
Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.