The method copyValueOf() converts a character array to a String with the same contents. This method is equivalent to valueOf(char[]).

The offset represents the index of the first element to start copying from, and the count represents the number of elements to copy.

Available Signatures

public static String copyValueOf(char[] data)
public static String copyValueOf(char[] data, int offset, int count)

Example

@Test
public void whenCallCopyValueOf_thenStringConstructed() {
    char[] array = new char[] { 'a', 'b', 'c', 'd' };
    
    assertEquals("abcd", String.copyValueOf(array));
}
Next »
Java String.endsWith()
« Previous
Java String.contains()
Course – LS – All

Get started with Spring and Spring Boot, through the Learn Spring course:

>> CHECK OUT THE COURSE
res – REST with Spring (eBook) (everywhere)
Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.