Preguntas etiquetadas con fileoutputstream


17
file.delete () devuelve falso aunque file.exists (), file.canRead (), file.canWrite (), file.canExecute () todos devuelven verdadero
Estoy tratando de eliminar un archivo, después de escribir algo en él, con FileOutputStream. Este es el código que utilizo para escribir: private void writeContent(File file, String fileContent) { FileOutputStream to; try { to = new FileOutputStream(file); to.write(fileContent.getBytes()); to.flush(); to.close(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.