I want to write an ArrayList into a text file.
ArrayList
The ArrayList is created with the code:
ArrayList arr = new A
import java.io.FileWriter; ... FileWriter writer = new FileWriter("output.txt"); for(String str: arr) { writer.write(str + System.lineSeparator()); } writer.close();