Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JarOutputStream (0.1 sec)

  1. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        }
    
        // Helper method to create test JAR with XML content
        private void createTestJarWithXml(File jarFile, String xmlContent) throws Exception {
            try (JarOutputStream jos = new JarOutputStream(new FileOutputStream(jarFile))) {
                JarEntry entry = new JarEntry("fess_ds++.xml");
                jos.putNextEntry(entry);
                jos.write(xmlContent.getBytes());
                jos.closeEntry();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        Closer closer = Closer.create();
        try {
          FileOutputStream fileOut = closer.register(new FileOutputStream(jarFile));
          JarOutputStream jarOut = closer.register(new JarOutputStream(fileOut, manifest));
          for (String entry : entries) {
            jarOut.putNextEntry(new ZipEntry(entry));
            Resources.copy(ClassPathTest.class.getResource(entry), jarOut);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 23K bytes
    - Viewed (0)
Back to top