So schreiben Sie die Konsolenausgabe in eine txt-Datei

Ich habe versucht, die Konsolenausgabe mit diesem Codevorschlag in eine txt-Datei zu schreiben (http://www.daniweb.com/forums/thread23883.html#) aber ich war nicht erfolgreich. Was ist falsch?

try {
      //create a buffered reader that connects to the console, we use it so we can read lines
      BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

      //read a line from the console
      String lineFromInput = in.readLine();

      //create an print writer for writing to a file
      PrintWriter out = new PrintWriter(new FileWriter("output.txt"));

      //output to the file a line
      out.println(lineFromInput);

      //close the file (VERY IMPORTANT!)
      out.close();
   }
      catch(IOException e1) {
        System.out.println("Error during reading/writing");
   }

Antworten auf die Frage(11)

Ihre Antwort auf die Frage