2022-11-24 13:59:26 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
/**The class Execute is the executen file for the whole programm.
|
|
|
|
*/
|
|
|
|
public class Execute {
|
|
|
|
public static void main (String[]args){
|
|
|
|
ArrayList<String> data = GeneralMethods.readData("test.csv");
|
2022-11-29 16:18:32 +01:00
|
|
|
|
2022-11-24 13:59:26 +01:00
|
|
|
for(String d : data){
|
|
|
|
System.out.println(d);
|
|
|
|
}
|
|
|
|
GeneralMethods.writeData("test2.csv",data);
|
|
|
|
}
|
|
|
|
}
|