Java IO Tutorial - Java Path.iterator()








Syntax

Path.iterator() has the following syntax.

Iterator <Path> iterator()

Example

In the following code shows how to use Path.iterator() method.

//  w ww .  j a  va 2s .  com
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Iterator;

public class Main {

    public static void main(String[] args) {

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

        Iterator<Path> it = path.iterator();
        
        while(it.hasNext()) {
            System.out.println(it.next());
        }
    }
}

The code above generates the following result.