URL getUserInfo() method in Java with Examples
The getUserInfo() function is a part of URL class. The function getUserInfo() returns the UserInfo part of a specified URL.
Function Signature:
public String getUserInfo()
Syntax:
url.getUserInfo()
Parameter: This function does not require any parameter
Return Type: The function returns String Type
Below programs illustrates the use of getUserInfo() function:
Example 1: Given a URL we will get the UserInfo using the getUserInfo() function.
// Java program to show the use // of the function getUserInfo() import java.net.*; class Solution { public static void main(String args[]) { // url object URL url = null ; try { // create a URL url = new URL( // get the UserInfo String _UserInfo = url.getUserInfo(); // display the URL System.out.println( "URL = " + url); // display the UserInfo System.out.println( " UserInfo= " + _UserInfo); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } |
URL = https:// Arnab_Kundu@www.geeksforgeeks.org UserInfo= Arnab_Kundu
Example 2: Now we will not provide any User Info and use the function to get the UserInfo and see the results.
// Java program to show the use // of the function getUserInfo() import java.net.*; class Solution { public static void main(String args[]) { // url object URL url = null ; try { // create a URL // get the UserInfo String _UserInfo = url.getUserInfo(); // display the URL System.out.println( "URL = " + url); // display the UserInfo System.out.println( " UserInfo= " + _UserInfo); } // if any error occurs catch (Exception e) { // display the error System.out.println(e); } } } |
URL = https:// www.geeksforgeeks.org UserInfo= null
Recommended Posts:
- URI getUserInfo() method in Java with Examples
- Java lang.Long.numberOfLeadingZeros() method in Java with Examples
- Java.util.Collections.disjoint() Method in java with Examples
- Java lang.Long.highestOneBit() method in Java with Examples
- Java.lang.Short toString() method in Java with Examples
- Java lang.Long.numberOfTrailingZeros() method in Java with Examples
- Java lang.Long.lowestOneBit() method in Java with Examples
- Java.util.Collections.rotate() Method in Java with Examples
- Java lang.Long.byteValue() method in Java with Examples
- Java lang.Long.builtcount() method in Java with Examples
- Java lang.Long.reverse() method in Java with Examples
- Java Clock withZone() method in Java with Examples
- Java Clock tickMinutes() method in Java with Examples
- Java 8 | ArrayDeque removeIf() method in Java with Examples
- Set contains() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.