Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/09/2012, 22:34
Avatar de chuidiang
chuidiang
Colaborador
 
Fecha de Ingreso: octubre-2004
Mensajes: 3.774
Antigüedad: 20 años, 3 meses
Puntos: 454
Respuesta: validar siun archivo existe

La clase File tiene métodos para ello http://docs.oracle.com/javase/6/docs...a/io/File.html como exists() o canRead()

File file = new File("/path/fichero");
if (file.exists()) {
...
}

Se bueno.
__________________
Apuntes Java
Wiki de Programación