Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for transform (0.17 sec)

  1. src/main/java/org/codelibs/core/xml/SchemaUtil.java

     */
    package org.codelibs.core.xml;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.io.File;
    import java.net.URL;
    
    import javax.xml.transform.Source;
    import javax.xml.validation.Schema;
    import javax.xml.validation.SchemaFactory;
    
    import org.codelibs.core.exception.SAXRuntimeException;
    import org.xml.sax.SAXException;
    
    /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/CopyUtil.java

        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>
         *
         * @param in
         *            リーダー
         * @param out
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/nio/ChannelUtil.java

         * @param from
         *            転送元のファイルチャネル。{@literal null}であってはいけません
         * @param to
         *            転送先のファイルチャネル。{@literal null}であってはいけません
         * @return 転送されたバイト数
         */
        public static long transfer(final FileChannel from, final FileChannel to) {
            assertArgumentNotNull("from", from);
            assertArgumentNotNull("to", to);
    
            try {
                return from.transferTo(0, from.size(), to);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6K bytes
    - Viewed (0)
Back to top