Java - File toURI() 方法



描述

Java File toURI() 方法创建一个表示抽象路径名的文件 URI。

声明

以下是 java.io.File.toURI() 方法的声明:

public URI toURI()

参数

返回值

该方法返回一个绝对的、分层的 URI,其方案等于“file”。

异常

SecurityException - 如果无法访问所需的系统属性值

示例 1

以下示例演示了 Java File toURI() 方法的使用。我们创建了两个 File 引用。然后我们使用当前目录中不存在的 test.txt 创建了一个 File 对象。然后我们使用 createNewFile() 方法创建了该文件。现在,使用 getAbsoluteFile() 方法获取文件并使用 toURI() 方法获取文件的 URI 表示形式,然后我们使用 exists() 方法检查文件是否存在。

package com.tutorialspoint;
import java.io.File;
import java.net.URI;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File f1 = null;
      URI path = null;
      boolean bool = false;
      
      try {
         // create new files
         f = new File("test.txt");
         
         // create new file in the system
         f.createNewFile();
         
         // create new file object from the absolute path
         f1 = f.getAbsoluteFile();
         
         // returns true if the file exists
         bool = f1.exists();
         
         // returns string representation of the file
         path = f1.toURI();
         
         // if file exists
         if(bool) {
         
            // prints the uri
            System.out.print(path);
         }
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

F:\Workspace\Tester\test.txt Exists? true

示例 2

以下示例演示了 Java File toURI() 方法的使用。我们创建了一个 File 引用。然后我们使用提供的目录中存在的 F:/test.txt 创建了一个 File 对象。现在,使用 getAbsoluteFile() 方法获取文件并使用 toURI() 方法打印其 URI 表示形式。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      
      try {
         // create new files
         f = new File("F:/Test2/test.txt");         
    
         // get the file
         File f1 = f.getAbsoluteFile();
         
         // prints URI representation of the file
         System.out.println(f1.toURI());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

file:/F:/Test2/test.txt

示例 3

以下示例演示了 Java File toURI() 方法的使用。我们创建了一个 File 引用。然后我们使用提供的目录中存在的 F:/test 目录创建了一个 File 对象。现在,使用 getAbsoluteFile() 方法获取目录及其 URI 表示形式。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      
      try {
         // create new files
         f = new File("F:/test2");         
    
         // get the file
         File f1 = f.getAbsoluteFile();
         
         // prints the string representation of the file
         System.out.println(f1.toURI());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

file:/F:/test2/
java_file_class.htm
广告