📜  Java中的 URL toURI() 方法及示例

📅  最后修改于: 2022-05-13 01:55:27.807000             🧑  作者: Mango

Java中的 URL toURI() 方法及示例

URL 类的getURI()函数将 URL 对象转换为 URI 对象。任何使用 RFC 2396 编译的 URL 都可以转换为 URI。如果转换为 URI 格式,则不是指定格式的 URL 将产生错误。

函数签名

public URI toURI()

句法

url.toURI()

参数:此方法不接受任何参数。

返回类型:此函数返回一个从该 URL 对象转换而来的URI对象。

异常:如果此 URL 未严格按照 RFC2396 格式化并且无法转换为 URI,则此函数将引发URISyntaxException

下面的例子将说明 toURI()函数的使用:

示例 1:

// Java program to convert URL to URI
  
import java.net.*;
  
class GFG {
    public static void main(String args[])
    {
  
        // url and uri objects
        URL url = null;
        URI uri = null;
  
        try {
  
            // create a URL
            url = new URL("https://www.geeksforgeeks.org");
  
            // display the URL
            System.out.println("URL: " + url);
  
            // convert the URL to URI
            uri = url.toURI();
  
            // display the URI
            System.out.println("URI: " + uri);
        }
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
输出:
URL: https://www.geeksforgeeks.org
URI: https://www.geeksforgeeks.org

示例 2:

// Java program to convert URL to URI
  
import java.net.*;
  
class GFG {
    public static void main(String args[])
    {
  
        // url and uri objects
        URL url = null;
        URI uri = null;
  
        try {
  
            // create an invalid URL
            url = new URL("https://www.geeksfor>geeks.com");
  
            // display the URL
            System.out.println("URL: " + url);
  
            // convert the URL to URI
            uri = url.toURI();
  
            // display the URI
            System.out.println("URI: " + uri);
        }
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
输出:
URL: https:// www.geeksfor>geeks.com
java.net.URISyntaxException:
 Illegal character in authority at index 8:
 https:// www.geeksfor>geeks.com