位置:首页 > Java技术 > Java.io包 > Java.io.File.toURI()方法实例

Java.io.File.toURI()方法实例

java.io.File.toURI() 方法创建一个文件:URI用来表示抽象路径名。

声明

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

public URI toURI()

参数

  • NA

返回值

该方法返回一个绝对的,分层与计划等于“file”的URI。

异常

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

例子

下面的示例演示java.io.File.toURI()方法的用法。

package com.yiibai;

import java.io.File;
import java.net.URI;

public class FileDemo {
   public static void main(String[] args) {
      
      File f = null;
      URI uri;
      boolean bool = false;
      
      try{      
         // create new File object
         f = new File("c:/java test.txt");
         
         // returns true if file exists
         bool = f.exists();
         
         // if file exists
         if(bool)
         {
            // returns the uri string
            uri = f.toURI();
            
            // print
            System.out.println("uri: "+uri);
         }      
      }catch(Exception e){
         // if any error occurs
         e.printStackTrace();
      }
   }
}

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

uri: file:/c:/java%20test.txt