Java String.valueOf(char[] data)
Syntax
String.valueOf(char[] data) has the following syntax.
public static String valueOf(char[] data)
Example
In the following code shows how to use String.valueOf(char[] data) method.
public class Main {
public static void main(String args[]) {
char charArray[] = { 'j', 'a', 'v', 'a', '2', 's','.','c','o','m' };
System.out.printf("char array = %s\n", String.valueOf(charArray));
//from w ww. ja v a 2 s.c o m
}
}
The code above generates the following result.