«fileoutputstream» etiketlenmiş sorular


17
file.delete (), file.exists (), file.canRead (), file.canWrite (), file.canExecute (), tümü true döndürse de false döndürür
İle bir şey yazdıktan sonra bir dosyayı silmeye çalışıyorum FileOutputStream. Yazmak için kullandığım kod bu: 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(); } catch (IOException e) { // …

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.