Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getChannel (0.05 sec)

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

         *            ファイル出力ストリーム
         * @return コピーしたバイト数
         */
        protected static int copyInternal(final FileInputStream in, final FileOutputStream out) {
            final FileChannel ic = in.getChannel();
            final FileChannel oc = out.getChannel();
            return (int) ChannelUtil.transfer(ic, oc);
        }
    
        /**
         * リーダーの内容をライターにコピーします。
         * <p>
         * リーダー、ライターともクローズされません。
         * </p>
         *
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top