public final class Paths extends Object
Path
by converting a path string or URI
.Path
via the Path.of
methods instead of via the get
methods defined in this class as this class may be deprecated in a future release.public static Path get(String first, String... more)
Path
.Path.of(String, String...)
with the given parameters.first
- the path string or initial part of the path stringmore
- additional strings to be joined to form the path stringPath
InvalidPathException
- if the path string cannot be converted to a Path
public static Path get(URI uri)
Path
object.Path.of(URI)
with the given parameter.uri
- the URI to convertPath
IllegalArgumentException
- if preconditions on the uri
parameter do not hold. The format of the URI is provider specific.FileSystemNotFoundException
- The file system, identified by the URI, does not exist and cannot be created automatically, or the provider identified by the URI's scheme component is not installedSecurityException
- if a security manager is installed and it denies an unspecified permission to access the file system
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/nio/file/Paths.html