Saturday, December 13, 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

2 COMMENTS

Most Popular

Dominic
32447 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6816 POSTS0 COMMENTS
Nicole Veronica
11953 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12031 POSTS0 COMMENTS
Shaida Kate Naidoo
6951 POSTS0 COMMENTS
Ted Musemwa
7202 POSTS0 COMMENTS
Thapelo Manthata
6898 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS