String.valueOf(char[] data, int offset, int count) has the following syntax.
public static String valueOf(char[] data, int offset, int count)
In the following code shows how to use String.valueOf(char[] data, int offset, int count) method.
public class Main { public static void main(String args[]) { char charArray[] = { 'j', 'a', 'v', 'a', '2', 's','.','c','o','m' }; System.out.printf("part of char array = %s\n", String.valueOf(charArray, 3, 3)); } }
The code above generates the following result.