This commit is contained in:
Ma
2022-11-29 16:18:32 +01:00
parent f2202682b6
commit 715a6fa94a
3 changed files with 4 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import java.util.ArrayList;
public class Execute {
public static void main (String[]args){
ArrayList<String> data = GeneralMethods.readData("test.csv");
for(String d : data){
System.out.println(d);
}

View File

@@ -34,7 +34,7 @@ public class GeneralMethods {
/**
* Author: Sabine Gubitz
*
*ddd
* The method read Data interprets a file and returns an useable list for other methods.
* Files to be read have to use : as a divider between attributes
*
@@ -119,4 +119,5 @@ public class GeneralMethods {
}
}
}