- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for ByteArrayInputStream (0.09 sec)
-
src/main/java/org/codelibs/core/io/CopyUtil.java
*/ public static int copy(final byte[] in, final OutputStream out) { assertArgumentNotNull("in", in); assertArgumentNotNull("out", out); final ByteArrayInputStream is = new ByteArrayInputStream(in); if (out instanceof FileOutputStream) { return copyInternal(is, (FileOutputStream) out); } return copyInternal(is, wrap(out)); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 52.4K bytes - Viewed (0)