Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNextJarEntry (0.12 sec)

  1. src/main/java/org/codelibs/core/jar/JarInputStreamUtil.java

            }
        }
    
        /**
         * {@link JarInputStream#getNextJarEntry()}の例外処理をラップするメソッドです。
         *
         * @param is
         *            入力ストリーム。{@literal null}であってはいけません
         * @return {@link JarEntry}
         * @throws IORuntimeException
         *             {@link IOException}が発生した場合
         * @see JarInputStream#getNextJarEntry()
         */
        public static JarEntry getNextJarEntry(final JarInputStream is) throws IORuntimeException {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoTransform.java

            JarEntry jarEntry = inputStream.getNextJarEntry();
            while (jarEntry != null) {
                outputStream.putNextEntry(jarEntry);
                outputStream.write(inputStream.readAllBytes());
                outputStream.closeEntry();
                jarEntry = inputStream.getNextJarEntry();
            }
        }
    
        private static byte[] addModuleInfo(ModuleInfo moduleInfo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top