La función getQuery() es parte de la clase URL . La función getQuery() devuelve la consulta de una URL específica.
Firma de función :
public String getQuery()
Sintaxis :
url.getQuery()
Parámetro : Esta función no requiere ningún parámetro
Tipo de devolución: la función devuelve una consulta de tipo de string de una URL especificada.
Los siguientes programas ilustran el uso de la función getQuery():
Ejemplo 1 : dada una URL, obtendremos la consulta utilizando la función 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); } } }
Producción:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol Query=title=protocol
Ejemplo 2 : ahora no proporcionaremos ninguna consulta y usaremos la función para obtener la consulta y ver los resultados.
// 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); } } }
Producción:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples Query=null
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA