MCPcopy Index your code
hub / github.com/VolmitSoftware/Adapt / toCharArray

Method toCharArray

src/main/java/com/volmit/adapt/util/IO.java:631–635  ·  view source on GitHub ↗

Get the contents of an InputStream as a character array using the default character encoding of the platform. This method buffers the input internally, so there is no need to use a BufferedInputStream . @param is the InputStream to read from @return the req

(InputStream is)

Source from the content-addressed store, hash-verified

629 * @since Commons IO 1.1
630 */
631 public static char[] toCharArray(InputStream is) throws IOException {
632 CharArrayWriter output = new CharArrayWriter();
633 copy(is, output);
634 return output.toCharArray();
635 }
636
637 /**
638 * Get the contents of an <code>InputStream</code> as a character array using

Callers 9

colorsToStringMethod · 0.80
LZStringClass · 0.80
capitalizeMethod · 0.80
cnameMethod · 0.80
expandJsonMethod · 0.80
walkFormatMethod · 0.80
RNGClass · 0.80
IOClass · 0.80

Calls 1

copyMethod · 0.95

Tested by

no test coverage detected