我通过以下方式下载了 csv 文件信息文件:
File file = new File(context.getFilesDir().getAbsolutePath()+ "/data2.csv");
// File file = new File("data2.csv");
try {
ftp.connect("x.x.x.x");
ftp.login("xx", "xx");
ftp.changeWorkingDirectory("/");
ftp.enterLocalPassiveMode();
ftp.setFileType(FTPClient.BINARY_FILE_TYPE);
OutputStream outputStream = null;
boolean success = false;
try {
outputStream = new BufferedOutputStream(new FileOutputStream(file));
success = ftp.retrieveFile("data.csv", outputStream);
} finally {
if (outputStream != null) {
outputStream.close();
}
}
之后,我检查了我的应用程序 ddms,并且文件 data2.csv 在那里。
然后我只想打开它
CSVReader reader = new CSVReader(new InputStreamReader(getAssets().open(context.getFilesDir().getAbsolutePath()+File.separator+"data2.csv")));
经过几次尝试,它抛出“filenotfoundexception”。我该怎么办 ?