Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OutputStreamUtil (0.24 sec)

  1. src/main/java/org/codelibs/core/io/CopyUtil.java

         */
        public static int copy(final InputStream in, final File out) {
            assertArgumentNotNull("in", in);
            assertArgumentNotNull("out", out);
    
            final FileOutputStream os = OutputStreamUtil.create(out);
            try {
                if (in instanceof FileInputStream) {
                    return copyInternal((FileInputStream) in, os);
                }
                return copyInternal(wrap(in), os);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top