Writing to the internal private storage in Android

后端 未结 6 2275
粉色の甜心
粉色の甜心 2020-12-06 01:44

I am trying to save some data from my app in a simple text file on the internal private storage area (app user preferences). I have read through many questions on here (Stac

6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-06 02:29

    Try changing the following line:

    File newfile = new File(this.getFilesDir() + "/data/files/", "sample.txt");
    

    to:

    File newfile = new File(this.getFilesDir() + "/","sample.txt");
    

提交回复
热议问题