Friday, September 5, 2025
HomeLanguagesJavaCompositeName toString() method in Java with Examples

CompositeName toString() method in Java with Examples

The toString() method of a javax.naming.CompositeName class is used to create the string representation of this composite name object, using the syntax “/” as a separator of each object. The string representation returned by this composite name consists of enumerating in order each component of this composite name and separating each component by a forward slash “/” character. An empty component of this composite name object is represented by an empty string.

Syntax:

public String toString()

Parameters: This method accepts nothing.

Return value: This method returns a non-null string representation of this composite name.

Below programs illustrate the CompositeName.toString() method:
Program 1:




// Java program to demonstrate
// CompositeName.toString()
  
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // create a composite name object
        CompositeName CompositeName1
            = new CompositeName(
                "a/n/cc/aa/@@/##/7");
  
        // apply toString()
        String toString = CompositeName1.toString();
  
        // print value
        System.out.println("toString: " + toString);
    }
}


Output:

toString: a/n/cc/aa/@@/##/7

Program 2:




// Java program to demonstrate
// CompositeName.toString() method
  
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // create a composite name object
        CompositeName CompositeName1
            = new CompositeName("cc/ee/dd/vv/a/b/z/y/x/f");
  
        // apply toString()
        String toString = CompositeName1.toString();
  
        // print value
        System.out.println("CompositeName:" + toString);
    }
}


Output:

CompositeName:cc/ee/dd/vv/a/b/z/y/x/f

References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#toString()

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS