當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java File toURI()用法及代碼示例


toURI() 方法返回與所提供的 URL 相對應的 URI。此方法的用法方式與新 URI (this.toString()) 類似。這個抽象路徑名由文件:URI 表示。

用法:

public URI toURI()

返回:它返回一個絕對分層 URI,其方案為“file,”,一個表示此抽象路徑名的路徑,以及未定義的權限、查詢和片段組件。

異常:

  • 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(); 
        } 
    } 
} 

輸出:


相關用法


注:本文由純淨天空篩選整理自sanketnagare大神的英文原創作品 Java File Class toURI() Method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。