Open In App

Files Class writeString() Method in Java with Examples

The writeString() method of File Class in Java is used to write contents to the specified file.

Syntax:



Files.writeString(path, string, options)

Parameters: 

Return Value: This method does not return any value.



Below are two overloaded forms of the writeString() method.

public static Path writeString​(Path path, CharSequence csq, OpenOption… options) throws IOException

public static Path writeString​(Path path, CharSequence csq, Charset cs, OpenOption… options) throws IOException

Below is the implementation of the problem statement:




// Implementation of writeString() method in Java
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
  
public class GFG {
    public static void main(String[] args)
    {
        // Initializing file Path with some conditions
        Path filePath
            = Paths.get("/home/mayur/", "temp", "gfg.txt");
  
        try {
            // Write content to file
            Files.writeString(filePath, "Hello from GFG !!",
                              StandardOpenOption.APPEND);
  
            // Verify file content
            String content = Files.readString(filePath);
  
            System.out.println(content);
        }
        catch (IOException e) {
            e.printStackTrace();
        }
    }
}

Output:

Hello from GFG ! !

output File

Article Tags :