我想读取CSV文件。我尝试了Reading CSV File In Android App
public float modelPredict(String StationNM, int day, int hour, int minute) {
int[] model = new int[0];
try {
File csvfile = new File(Environment.getExternalStorageDirectory() + "/"+StationNM+".csv");
CSVReader reader = new CSVReader(new FileReader("csvfile.getAbsolutePath()"));
// CSVReader reader = new CSVReader(new FileReader(StationNM+".csv"));
String[] nextLine;
while ((nextLine = reader.readNext()) != null) {
// nextLine[] is an array of values from the line
System.out.println(nextLine[0] + nextLine[1] + "etc...");
}
model = new int[nextLine.length];
for (int i=0; i<nextLine.length; i++) {
model[i] = Integer.parseInt(nextLine[i]);
}
} catch (Exception e) {
e.printStackTrace();
//Toast.makeText(this, "The specified file was not found", T oast.LENGTH_SHORT).show();
}
但我有一个例外:
/System.err: java.io.FileNotFoundException: csvfile.getAbsolutePath() (No such file or directory)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:231)
at java.io.FileInputStream.<init>(FileInputStream.java:165)
我该如何解决?
我不知道“ csvfile.getAbsolutePath()”中输入了什么
在我的存储库中是https://github.com/Lay4U/CapstOne/tree/master/SC/MySubwayProject
答案 0 :(得分:1)
替换:
CSVReader reader = new CSVReader(new FileReader("csvfile.getAbsolutePath()"));
具有:
CSVReader reader = new CSVReader(new FileReader(csvfile));