What is the simplest way to write a text file in Java?

前端 未结 9 1218
情歌与酒
情歌与酒 2021-01-01 09:55

I am wondering what is the easiest (and simplest) way to write a text file in Java. Please be simple, because I am a beginner :D

I searched the web and found this co

9条回答
  •  孤城傲影
    2021-01-01 10:47

    In Java 11 or Later, writeString can be used from java.nio.file.Files,

    String content = "This is my content";
    String fileName = "myFile.txt";
    Files.writeString(Paths.get(fileName), content); 
    

    With Options:

    Files.writeString(Paths.get(fileName), content, StandardOpenOption.CREATE)
    

    More documentation about the java.nio.file.Files and StandardOpenOption

提交回复
热议问题