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

前端 未结 9 1282
情歌与酒
情歌与酒 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:48

    Files.write() the simple solution as @Dilip Kumar said. I used to use that way untill I faced an issue, can not affect line separator (Unix/Windows) CR LF.

    So now I use a Java 8 stream file writing way, what allows me to manipulate the content on the fly. :)

    List lines = Arrays.asList(new String[] { "line1", "line2" });
    
    Path path = Paths.get(fullFileName);
    try (BufferedWriter writer = Files.newBufferedWriter(path)) {   
        writer.write(lines.stream()
                          .reduce((sum,currLine) ->  sum + "\n"  + currLine)
                          .get());
    }     
    

    In this way, I can specify the line separator or I can do any kind of magic like TRIM, Uppercase, filtering etc.

提交回复
热议问题