We may seen lot of arrays like Integer, Character, Float and Double or even String array. In this tutorial we will see about converting Character array to String in Java code. We can achieve this by 2 ways like given below, |
public class CharToString { public static void main(String[] args) { char[] myArray = new char[]{'j','a','v','a',' ','d','i','s','c','o','v','e','r'}; //By 2 ways we can convert char[] to String and lets see both waysString type1 = String.valueOf(myArray);String type2 = new String(myArray); System.out.println("TYPE 1 : "+type1); System.out.println("TYPE 2 : "+type2); } }
OUTPUT:
TYPE 1 : java discover TYPE 2 : java discover
No comments:
Write comments