0

我通过以下方式下载了 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”。我该怎么办 ?

4

2 回答 2

0

您应该使用new FileInputStream(...)而不是getAssets().open(...).

于 2013-11-09T18:47:47.840 回答
0

此行不正确:

 CSVReader reader = new CSVReader(new InputStreamReader(getAssets().open(context.getFilesDir().getAbsolutePath()+File.separator+"data2.csv")));

将其更改为:

 CSVReader reader = new CSVReader(new InputStreamReader(context.getFilesDir().getAbsolutePath()+File.separator+"data2.csv")));
于 2013-11-09T18:48:07.960 回答