- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for GZIPOutputStream (0.16 sec)
-
src/main/java/org/codelibs/fess/helper/SearchHelper.java
*/ protected byte[] gzipCompress(final byte[] data) { try (final ByteArrayOutputStream bos = new ByteArrayOutputStream()) { try (final GZIPOutputStream gzipOut = new GZIPOutputStream(bos)) { gzipOut.write(data); } return bos.toByteArray(); } catch (final IOException e) { throw new IORuntimeException(e); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0)