我正在构建一个需要从 .csv 文件读取和编辑项目的应用程序。
我可以将 .csv 放在资产文件夹中,但希望能够在外部存储中搜索它,因为它会定期更改。
一位朋友给了我这段代码,用于将它放在资产文件夹中,但我对 android 比较陌生,这段代码对我来说没有意义,我无法让它工作。
public ArrayList<String> Job = new ArrayList<String>();
try {
is = res.getAssets().open("Job.csv");
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
String line;
while ((line = reader.readLine()) != null)
Job.add(line);
} catch (IOException ex) {
// handle exception
} finally {
try {
is.close();
} catch (IOException e) {
// handle exception
}
}