VOOZH about

URL: https://www.geeksforgeeks.org/java/url-getquery-method-in-java-with-examples/

⇱ URL getQuery() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

URL getQuery() method in Java with Examples

Last Updated : 11 Jul, 2025
The getQuery() function is a part of URL class. The function getQuery() returns the Query of a specified URL. Function Signature:
public String getQuery()
Syntax:
url.getQuery()
Parameter: This function does not require any parameter Return Type: The function returns String Type Query of a specified URL. Below programs illustrates the use of getQuery() function: Example 1: Given a URL we will get the Query using the getQuery() function.
Output:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol
 Query=title=protocol
Example 2: Now we will not provide any query and use the function to get the query and see the results.
Output:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples
 Query=null
Comment