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

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

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

getQuery()函数是URL 类的一部分。函数getQuery() 返回指定 URL 的 Query。

函数签名

public String getQuery()

语法

url.getQuery()

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

返回类型:函数返回指定URL的字符串类型查询。

下面的程序说明了 getQuery()函数的使用:

示例 1 :给定一个 URL,我们将使用 getQuery()函数获取查询。

// Java program to show the use
// of the function getQuery()
  
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/url-getprotocol-method-in-java-with-examples?title=protocol");
  
            // get the  Query
            String _Query = url.getQuery();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  Query
            System.out.println(" Query=" + _Query);
        }
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
输出:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol
 Query=title=protocol

示例 2 :现在我们将不提供任何查询,并使用该函数来获取查询并查看结果。

// Java program to show the use
// of the function getQuery()
  
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/url-getprotocol-method-in-java-with-examples");
  
            // get the  Query
            String _Query = url.getQuery();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  Query
            System.out.println(" Query=" + _Query);
        }
  
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}
输出:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples
 Query=null