VOOZH about

URL: https://www.geeksforgeeks.org/java/uri-getrawuserinfo-method-in-java-with-examples/

⇱ URI getRawUserInfo() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

URI getRawUserInfo() method in Java with Examples

Last Updated : 11 Jul, 2025
The getRawUserInfo() function is a part of URI class. The function getRawUserInfo() returns the raw UserInfo part of a specified URI.This function returns the exact value of user info without decoding the sequence of escaped octets if any. Function Signature:
public String getRawUserInfo()
Syntax:
uri.getRawUserInfo()
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 URI we will get the UserInfo using the getRawUserInfo() function.
Output:
URI = https://Arnab_Kundu@www.geeksforgeeks.org/
 Raw UserInfo=Arnab_Kundu
Example 2: The value returned by getUserInfo() and getRawUserInfo() is same except that all sequences of escaped octets are decoded. The getRawUserInfo() returns the exact value of the string as provided by the user but the getUserInfo() function decodes the sequence of escaped octets if any.
Output:
URI = https://Arnab_Kundu%E2%82%AC@www.geeksforgeeks.org/
 UserInfo=Arnab_Kundu?
 Raw UserInfo=Arnab_Kundu%E2%82%AC
Comment