Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 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/fess/helper/ThemeHelper.java

            final String themeName = getThemeName(artifact);
            if (logger.isDebugEnabled()) {
                logger.debug("Theme: {}", themeName);
            }
            try (ZipInputStream zis = new ZipInputStream(Files.newInputStream(jarPath))) {
                ZipEntry entry;
                while ((entry = zis.getNextEntry()) != null) {
                    if (!entry.isDirectory()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. 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)
  5. 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