Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ZipInputStream (0.14 sec)

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

         *
         * @param zipInputStream the ZIP file input stream (must not be {@literal null})
         * @param handler the handler to process classes (must not be {@literal null})
         */
        public static void forEach(final ZipInputStream zipInputStream, final ClassHandler handler) {
            assertArgumentNotNull("zipInputStream", zipInputStream);
            assertArgumentNotNull("handler", handler);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/zip/ZipInputStreamUtil.java

        }
    
        /**
         * A method that wraps the exception handling of {@link ZipInputStream#getNextEntry()}.
         *
         * @param zis
         *            {@link ZipInputStream}. Must not be {@literal null}.
         * @return {@link ZipEntry}
         * @see ZipInputStream#getNextEntry()
         */
        public static ZipEntry getNextEntry(final ZipInputStream zis) {
            assertArgumentNotNull("zis", zis);
    
            try {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

         *
         * @param zipInputStream
         *            the ZIP file input stream (must not be {@literal null})
         * @param handler
         *            the handler to process resources (must not be {@literal null})
         */
        public static void forEach(final ZipInputStream zipInputStream, final ResourceHandler handler) {
            assertArgumentNotNull("zipInputStream", zipInputStream);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/TraversalUtil.java

                this.rootDir = rootDir;
                this.zipUrl = zipUrl;
                this.prefix = prefix;
            }
    
            private void loadFromZip(final URL zipUrl) {
                final ZipInputStream zis = new ZipInputStream(URLUtil.openStream(zipUrl));
                try {
                    ZipEntry entry = null;
                    while ((entry = ZipInputStreamUtil.getNextEntry(zis)) != null) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top