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.
/*from w w w.j av a2 s . co m*/
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.