我有一个应用程序,可将文本文件从网络下载到应用程序私有文件夹/data/data/com.example.app
。该文件有一些我需要在下载时读取的数据。
我的应用程序中的代码:
private class DownloadTextFile extends AsyncTask<String, Integer, String> {
@Override
protected String doInBackground(String... sUrl) {
// download text file
}
@Override
protected void onPreExecute() {
super.onPreExecute();
// read text file
}
当我尝试读取文本文件时,出现file not found
错误。
当我关闭应用程序并重新打开它时,应用程序会很好地读取下载的文本文件。
编辑 :
哈哈,我太傻了。谢谢你们
how can i make this question as answered