Nie wiem jak zrobić aby móc wpisać tekst(zmienna typu String) w konsoli i następnie zapisać ten tekst do pliku tekstowego plik.txt?
import java.io.*;
public class Test
{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str;
System.out.println("Enter lines of text.");
System.out.println("Enter 'stop' to quit.");
do {
str = br.readLine();
} while(!str.equals("stop"));
}
}