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

 Live Demo

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

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 27-Jun-2020

434 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements