当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java URL getRef()用法及代码示例


getRef()函数是URL类的一部分。函数getRef()返回指定URL的引用或锚点部分。

函数签名

public String getRef()

用法


url.getRef()

参数:此函数不需要任何参数

返回类型:函数返回字符串类型

以下示例程序旨在说明getRef()函数的用法:

例子1:给定一个URL,我们将使用getRef()函数获取引用或锚点。

// Java program to show the 
// use of the function getRef() 
  
import java.net.*; 
  
class Solution { 
    public static void main(String args[]) 
    { 
        // url  object 
        URL url = null; 
  
        try { 
  
            // create a URL 
            url= new URL("https:// www.geeksforgeeks.org#Arnab_Kundu"); 
  
            // get the  Reference or anchor 
            String _Ref=url.getRef(); 
               
            // display the URL 
            System.out.println("URL = "+url); 
               
            // display the  Reference or anchor 
            System.out.println(" Reference or anchor="+_Ref); 
        } 
  
        // if any error occurs 
        catch (Exception e) { 
  
            // display the error 
            System.out.println(e); 
        } 
    } 
}
输出:
URL = https:// www.geeksforgeeks.org#Arnab_Kundu
 Reference or anchor=Arnab_Kundu

例子2:现在,我们将不再提供任何锚点,而是使用该函数来获取引用或锚点并查看结果。

// Java program to show the 
// use of the function getRef() 
  
import java.net.*; 
  
class Solution { 
    public static void main(String args[]) 
    { 
        // url  object 
        URL url = null; 
  
        try { 
  
            // create a URL 
            url = new URL("https:// www.geeksforgeeks.org"); 
  
            // get the  Reference or anchor 
            String _Ref = url.getRef(); 
  
            // display the URL 
            System.out.println("URL = " + url); 
  
            // display the  Reference or anchor 
            System.out.println(" Reference or anchor= "
                               + _Ref); 
        } 
  
        // if any error occurs 
        catch (Exception e) { 
  
            // display the error 
            System.out.println(e); 
        } 
    } 
}
输出:
URL = https:// www.geeksforgeeks.org
 Reference or anchor= null


相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 URL getRef() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。