how to write to a text file in java from an arraylist code example
Example: java text file to arraylist
Scanner s = new Scanner(new File("filepath"));
ArrayList<String> list = new ArrayList<String>();
while (s.hasNext()){
list.add(s.next());
}
s.close();