Skip to content

Instantly share code, notes, and snippets.

@appachan
Last active October 2, 2018 05:52
Show Gist options
  • Save appachan/cb4a560d5e9a4a9100e5e0c3dff64f8f to your computer and use it in GitHub Desktop.
Save appachan/cb4a560d5e9a4a9100e5e0c3dff64f8f to your computer and use it in GitHub Desktop.
for MICS jikken.
/* csvファイル読込み処理例 */
String FILE_NAME = "./data.csv";
try (
// try-with-resource
BufferedReader br = new BufferedReader(new FileReader(FILE_NAME));
) {
String line;
// 行のループ
while ((line = br.readLine()) != null) {
// "," で区切って読み込み
String[] vals = line.split(",", 0);
// to process something ...
}
} catch (Exception e) {
e.printStackTrace();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment