我想在我的内部存储中保存一个文件,然后经过一些处理以使用 RandomAccessFile 打开它,当我尝试打开该文件时,它会抛出异常 FileNotFound ...我哪里出错了?
FileOutputStream fos = getApplicationContext().openFileOutput("xxx.txt", Context.MODE_PRIVATE);
RandomAccessFile access = new RandomAccessFile("xxx.txt", "r");