@ -19,6 +19,7 @@ public class CSVScanner {
|
|||||||
|
|
||||||
Scanner scanner = new Scanner(new FileInputStream(new File(file)));
|
Scanner scanner = new Scanner(new FileInputStream(new File(file)));
|
||||||
scanner.useDelimiter("\n");
|
scanner.useDelimiter("\n");
|
||||||
|
scanner.nextLine();
|
||||||
while (scanner.hasNextLine()) {
|
while (scanner.hasNextLine()) {
|
||||||
List<String> line = new ArrayList<>();
|
List<String> line = new ArrayList<>();
|
||||||
String line_str = scanner.nextLine();
|
String line_str = scanner.nextLine();
|
||||||
|
|||||||
Reference in New Issue
Block a user