Android Dosya İşlemleri
18.08.2017 - 01:43
Yeniden merhaba arkadaşlar.
File myInternalFile = new File(context.getFilesDir(), fileName);
if (myInternalFile.exists()) {
//dosya varsa
} else {
myInternalFile.createNewFile();
}
FileOutputStream myOutputStream = new FileOutputStream(myInternalFile, true);
OutputStreamWriter myOutputStreamWriter = new OutputStreamWriter(myOutputStream);
for (int i = 0; i < data.length; i++) {
myOutputStreamWriter.write("\n"+data[i]);
}
myOutputStreamWriter.flush();
myOutputStreamWriter.close();
Şöyle bir kod denedim ve verileri dosyaya alt alta yazdırmaya çalıştım fakat olmadı. Hatam nerede yardımcı olur musunuz?
138
Görüntülenme
0 Beğeni