blob: 42b6899b2e4f4600b5658c1d36d6457cc1c847c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import java.io.*;
/*
* @author
* Kian Agheli
*
* References:
*
* Date:
* 2024-04-28
*
* Purpose of class:
* Read from and interpret CSV files.
*/
public class CSVReader extends Reader {
String[] header; // A CSV file has-a header. One line, multiple fields.
String[][] body; // A CSV file has-a body. Multiple lines, multiple fields.
public CSVReader(File file) {
super(file); // Call parent constructor
}
}
|