Domande taggate «fileoutputstream»


17
file.delete () restituisce false anche se file.exists (), file.canRead (), file.canWrite (), file.canExecute () restituiscono tutti true
Sto cercando di eliminare un file, dopo averci scritto qualcosa, con FileOutputStream. Questo è il codice che utilizzo per scrivere: 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 e.printStackTrace(); } …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.