Wednesday, September 3, 2025
HomeLanguagesJavaURL toExternalForm() method in Java with Examples

URL toExternalForm() method in Java with Examples

The toExternalForm() function is a part of URL class. The function toExternalForm() returns the string representation of a specified URL. The string is created by calling the toExternalForm() function of the stream protocol handler for this object.

Function Signature:

public String toExternalForm()

Syntax:

url.toExternalForm()

Parameter: This function does not require any parameter
Return Type: The function returns String Type

Below programs illustrates the use of toExternalForm() function:

Example 1: Given a URL we will to the string representation of the URL




// Java program to show the
// use of the function toExternalForm()
  
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");
  
            // get the  ExternalForm
            String _ExternalForm = url.toExternalForm();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  ExternalForm
            System.out.println(" String representation= "
                               + _ExternalForm);
        }
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}


Output:

URL = https:// www.geeksforgeeks.org
 String representation= https:// www.geeksforgeeks.org

Example 2:




// Java program to show the
// use of the function toExternalForm()
  
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#Arnab_Kundu");
              
            // get the  ExternalForm
            String _ExternalForm = url.toExternalForm();
  
            // display the URL
            System.out.println("URL = " + url);
  
            // display the  ExternalForm
            System.out.println(" String representation= "
                               + _ExternalForm);
        }
  
        // if any error occurs
        catch (Exception e) {
  
            // display the error
            System.out.println(e);
        }
    }
}


Output:

URL = https:// www.geeksforgeeks.org#Arnab_Kundu
 String representation= https:// www.geeksforgeeks.org#Arnab_Kundu
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6746 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS