Prints the string representation of the specified character array to the target stream. @param charArray the character array to print to the target stream. @see #print(String)
(char[] charArray)
| 390 | * @see #print(String) |
| 391 | */ |
| 392 | public void print(char[] charArray) { |
| 393 | print(new String(charArray, 0, charArray.length)); |
| 394 | } |
| 395 | |
| 396 | /** |
| 397 | * Prints the string representation of the specified character to the target |