Answers for "how to append to text file java"

0

java append file

import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;
import java.io.File;

class Main {

  Main() {
  }

  public void inputText(String text) throws IOException {

    Main data = new Main();
    data.writeFile(text);
  }

  private void writeFile(String text) throws IOException {
    String currentPath = new File(".").getCanonicalPath();
    Writer output;
    output = new BufferedWriter(new FileWriter(currentPath + "/uap2122.txt", true));

    output.append(text + "\n");
    output.close();
  }

  public static void main(String[] args) throws IOException {
    Main data = new Main();
    data.inputText("B632 2018 0093500 Eufloria");
    data.inputText("FF004 2018 0084000 Kata");
    data.inputText("T029 2015 0127800 Javasript");
    data.inputText("F098 2017 0057800 Hujan");
    data.inputText("T578 2014 0205700 Pemerograman C#");
  }
}
Posted by: Guest on February-26-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language