当我尝试将 csv 文件导入我的 java 代码时遇到问题,这里是相关的 java 代码
try { File file = new File("/home/hanrui/workspace/table.csv");
BufferedReader reader = new BufferedReader(new FileReader(file));
reader.readLine();
String line = null;
while((line=reader.readLine())!=null){
String item[] = line.split(",");
String last = item[item.length-1];
int value = Integer.parseInt(last);
series1Numbers[row] = value;
series2Numbers[row] = value;
row++;
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
当我调试它时,它报告了一个错误:找不到源。但我这样导入文件:File file = new File("/home/hanrui/workspace/table.csv")。(并且我调试了我的代码的其他部分,没有报告错误)
任何帮助将不胜感激 =)
这是日志:
[2012-06-05 15:27:25 - AndroidPlotExample] 安装 AndroidPlotExample.apk...
[2012-06-05 15:27:52 - AndroidPlotExample] 成功!
[2012-06-05 15:27:52 - AndroidPlotExample] 在设备模拟器 5554 上启动活动 edu.ius.rwisman.AndroidPlotExample.AndroidPlotExampleActivity
[2012-06-05 15:27:53 - AndroidPlotExample] ActivityManager:开始:Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=edu.ius.rwisman.AndroidPlotExample/ .AndroidPlotExampleActivity }
[2012-06-05 15:27:54 - AndroidPlotExample] 尝试将调试器连接到端口 8643 上的“edu.ius.rwisman.AndroidPlotExample”