How do I access/read from/write to Documents folder in Internal Storage on Android devices?
问题 How do I access public Documents folder on an Android phone's internal storage? I need to read and write publicly-accessible files into the Documents folder. 回答1: don't forget to add permission to androidmanifest.xml <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> sample of writing // write on SD card file data in the text box try { File myFile = new File("/sdcard/mysdfile.txt"); myFile