Creating String Object from Character Array in Java

Here is our character array.

char[] ch = { 'T', 'E', 'S', 'T'};

To create string object from the above character array is quite easy. Add the array to the string parameter as shown below −

String str = new String(ch);

Example

public class Demo {
   public static void main(String[] args) {
      char[] ch = { 'T', 'E', 'S', 'T'};
      String str = new String(ch);
      System.out.println(str);
   }
}

Output

TEST
Updated on: 2026-03-11T22:50:43+05:30

650 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements