Note that there are some explanatory texts on larger screens.

plurals
  1. POWriting to file not working in Android
    primarykey
    data
    text
    <p>I am trying to write to a text file in Android. My code is as follows (running in a Service):</p> <pre><code> File log; String state = Environment.getExternalStorageState(); File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); if (Environment.MEDIA_MOUNTED.equals(state) || Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) { log = new File(path, "log.csv"); System.out.println("Opening file"); } else { System.err.println("Could not write to external storage medium. No log will be created"); return; } String line = "stuff"; if (!log.exists()) { try { log.createNewFile(); System.out.println("Creating new log file."); } catch (IOException e) { System.err.println("Could not create new log file"); e.printStackTrace(); return; } } try { path.mkdirs(); BufferedWriter bw = new BufferedWriter(new FileWriter(log, true)); bw.append(line); System.out.println("Appending to log file."); bw.newLine(); bw.flush(); bw.close(); } catch (IOException e) { System.err.println("Failed to write to log file"); e.printStackTrace(); return; } </code></pre> <p>And I have put the following line in AndroidManifest.xml:</p> <pre><code>&lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; </code></pre> <p>When I run this, the following is printed in LogCat:</p> <pre><code>Opening file Appending to log file. </code></pre> <p>But I can't find any files with the given name on the phone's memory, despite looking in the desired directory and running a search to see if it's somewhere else instead.</p> <p>I'm not sure what could be going wrong. Any ideas? Thanks!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload