我遇到了,當我試圖導入CSV文件到我的Java代碼中的問題,這裏是相關的Java代碼無法導入CSV文件,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
[2012-06-05 15時27分53秒開始活動edu.ius.rwisman.AndroidPlotExample.AndroidPlotExampleActivity - AndroidPlotExample] ActivityManager:Starting: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'
是不是真的說「Source Not Found」? *文件*找不到我聽說過...但沒有*來源*找不到。 – aioobe
您確定該文件位於正確的位置嗎?你有什麼例外嗎?如果是這樣,請發佈堆棧跟蹤 –
顯示完整的exeption日誌 – Ilya