- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for processResource (0.04 sec)
-
src/main/java/org/codelibs/core/io/ResourceHandler.java
*/ public interface ResourceHandler { /** * Processes a resource. * * @param path the path * @param is the {@link InputStream} to read the resource */ void processResource(String path, InputStream is);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 997 bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
continue; } final InputStream is = JarFileUtil.getInputStream(jarFile, entry); try { handler.processResource(entryName.substring(pos), is); } finally { CloseableUtil.close(is); } } } } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0)