Apenas melhorando código do exercício. Errei nas questões objetivas, mas acerto aqui!! hehe
package exercicios;
import java.io.IOException;
import java.io.PrintWriter;
public class TesteLeitura4 {
public static void main(String[] args) throws IOException {
PrintWriter fw = new PrintWriter("arquivo5.txt"); //PrintWriter para ter acesso ao método println e lineSeparator
fw.println("Lorem ipsum dolor sit amet ...");
fw.write(System.lineSeparator());
fw.println("tempor incididunt ut labore ...");
fw.close();
}
}
Resultado: