Java IO Tutorial - Java Path.startsWith(String other)








Syntax

Path.startsWith(String other) has the following syntax.

boolean startsWith(String other)

Example

In the following code shows how to use Path.startsWith(String other) method.

// w  w w  . j  av  a  2s .c  om
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {

    public static void main(String[] args) {

        Path path01 = Paths.get("/tutorial/Java/JavaFX/Topic.txt");
        Path path02 = Paths.get("C:/tutorial/Java/JavaFX/Topic.txt");


        boolean sw = path01.startsWith("/tutorial/Java");
        System.out.println(sw);
        
    }
}

The code above generates the following result.