java.nio.file.Path接口的toUri()方法用于返回表示该路径的URI。此方法使用与标识提供者的URI方案相同的方案将此路径转换为绝对URI。 scheme-specific部件的确切形式在很大程度上取决于提供程序。在默认提供程序的情况下,URI是带有绝对路径组件的层次结构。查询和片段组件未定义。是否定义了权限组件是implementation-dependent。无法保证可以使用URI来构造java.io.File。特别是,如果此路径表示通用命名约定(UNC)路径,则UNC服务器名称可以编码在结果URI的权限组件中。如果是默认提供程序,并且文件存在,并且可以确定该文件是目录,那么生成的URI将以斜杠结尾。
用法:
URI toUri()
参数:此方法不接受任何内容。
返回值:此方法返回表示此路径的URI。
异常:此方法引发以下异常:
- IOError–如果发生I /O错误,则获取绝对路径,或者在构建文件系统以访问文件内容作为文件系统的位置,并且无法获取封闭文件系统的URI
- SecurityException–对于默认提供程序,并安装了安全管理器的情况,toAbsolutePath方法将引发安全异常。
以下示例程序旨在说明toUri()方法:
示例1:
// Java program to demonstrate
// java.nio.file.Path.toUri() method
import java.net.URI;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
{
// create an object of Path
Path path
= Paths.get("\\temp\\Spring");
// call toUri() to convert
// path in URI
URI uri = path.toUri();
// print URI
System.out.println("URI: "
+ uri);
}
}
输出:
示例2:
// Java program to demonstrate
// java.nio.file.Path.toUri() method
import java.net.URI;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
{
// create an object of Path
Path path
= Paths.get("D:\\eclipse\\configuration"
+ "\\org.eclipse.update\\history");
// call toUri() to convert
// path in URI
URI uri = path.toUri();
// print URI
System.out.println("URI: "
+ uri);
}
}
输出:
参考: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#toUri()
相关用法
- Java URL toURI()用法及代码示例
- Java Path getName(int)用法及代码示例
- Java Path resolveSibling()用法及代码示例
- Java Path getFileName()用法及代码示例
- Java Path endsWith()用法及代码示例
- Java Path startsWith()用法及代码示例
- Java Path getNameCount()用法及代码示例
- Java Path toString()用法及代码示例
- Java Path getFileSystem()用法及代码示例
- Java Path toFile()用法及代码示例
- Java Path resolve()用法及代码示例
- Java Path toAbsolutePath()用法及代码示例
- Java Path getRoot()用法及代码示例
- Java Path subpath()用法及代码示例
- Java Path normalize()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Path toUri() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。