Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ChannelUtil (1.05 sec)

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

                final long fileSize = ChannelUtil.size(channel);
    
                if (fileSize > maxSize) {
                    throw new IORuntimeException(new IOException("File too large: " + fileSize + " bytes (max: " + maxSize + " bytes). Use streaming APIs for large files."));
                }
    
                final ByteBuffer buffer = ByteBuffer.allocate((int) fileSize);
                ChannelUtil.read(channel, buffer);
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/CopyUtil.java

    import java.net.URL;
    import java.nio.ByteBuffer;
    import java.nio.channels.FileChannel;
    
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.net.URLUtil;
    import org.codelibs.core.nio.ChannelUtil;
    
    /**
     * Utility for copying.
     * <p>
     * The combinations of input and output types and the unit of elements copied are as follows:
     * </p>
     * <table border="1">
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top