Java文件类 toURI() 方法及示例
toURI()方法返回与提供的 URL 对应的 URI。此方法的工作方式类似于新的 URI (this.toString())。这个抽象路径名由一个文件表示:URI。
句法:
public URI toURI()
返回:它返回一个带有方案“文件”的绝对分层 URI,一个表示此抽象路径名的路径,以及未定义的权限、查询和片段组件。
例外:
- SecurityException:如果您无法获得所需的系统属性值
例子:
Java
// Java Program to demonstrate the working
// of toURI() method of File Class
import java.io.File;
import java.net.URI;
public class GFG
{
public static void main (String[] args)
{
File f = new File("C:\\GEEKSFORGEEKS\\hello.txt");
try
{
URI uri = f.toURI();
System.out.println("uri is :- " + uri);
}
catch (SecurityException e)
{
e.printStackTrace();
}
}
}
输出: