Java NIO.2
Posted onNon blocking IO in Java, released with Java 7. Path Path represents a path on the storage system to a directory or file. Conceptually it is a replacement for the java.io.File class. Path path = Paths.get(/bla/bli/blu/blue.txt); Paths is the factory class for the interface Path. The Paths class contains static factory methods that return a Path. […]