[참고링크]
- CSV 파일이란?
- Java로 csv 파일 읽기
- How to read and parse CSV file in Java
- openCSV
- Opencsv is a very simple csv (comma-separated values) parser library for Java. It was developed because all of current csv parsers I've come across don't have commercial-friendly licenses.
File csvfile = new File(filepath);
String line = null;
String cvsSplit = ",";
try {
BufferedReader bufReder = new BufferedReader(new FileReader(csvfile));
while ((line = bufReder.readLine()) != null) {
String[] coordi = line.split(cvsSplit);
// System.out.println("[Coordi : time=" + coordi[0] + ",x=" + coordi[1] + ",y=" + coordi[2] +"]");
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
반응형
'SW Programming' 카테고리의 다른 글
[react js] 이미지가 로드가 되지 않았을 때 기본 이미지 보여주기 (0) | 2023.05.30 |
---|---|
dumpbin / DLL이 64bit인지 32bit인지 알고싶다. (0) | 2021.03.31 |
Qt) GammaRay, Qt 어플리케이션 상태 정보, ui 정보 알아오기 (2) | 2021.01.28 |
소프트웨어 테스팅 While Box testing, Black Box testing (0) | 2018.01.14 |
뉴욕타임즈 api (0) | 2017.03.02 |
댓글