У меня следующий вопрос.Я хотел бы поместить файл с именем data.xml в папку sdcard / appname и использовать его для чтения и записи данных приложения.
Итак, когда создается мое основное действие, мне нужно проверить, существует ли этот файл:
public class appname extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.no_elements_l);
File file = getBaseContext().getFileStreamPath("/sdcard/appname/data.xml");
if(file.exists()) {
return;
} else {
// create a File object for the parent directory
File MTdirectory = new File("/sdcard/appname/");
// have the object build the directory structure, if needed.
MTdirectory.mkdirs();
// create a File object for the output file
File outputFile = new File(MTdirectory, "data.xml");
// now attach the OutputStream to the file object, instead of a String representation
FileOutputStream DataFile = new FileOutputStream(outputFile);
}
Но у меня есть необработанный тип исключения FileNotFoundException в последней строке.В чем проблема?Используется разрешение WRITE_EXTERNAL_STORAGE добавлено в манифест.