- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for binaryData (0.04 sec)
-
src/test/java/org/codelibs/core/misc/Base64UtilTest.java
// Test with binary data final byte[] binaryData = new byte[] { 0, 1, 2, 3, 127, (byte) 128, (byte) 255 }; final String binaryEncoded = Base64Util.encode(binaryData); final byte[] binaryDecoded = Base64Util.decode(binaryEncoded); assertEquals("Binary data length should match", binaryData.length, binaryDecoded.length); for (int i = 0; i < binaryData.length; i++) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/ResponseDataUtilTest.java
// Test with binary content byte[] binaryData = new byte[] { 0x00, 0x01, 0x02, (byte) 0xFF, (byte) 0xFE, (byte) 0xFD }; ResponseData responseData = new ResponseData() { @Override public InputStream getResponseBody() { return new ByteArrayInputStream(binaryData); } @Override public String getUrl() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 7.9K bytes - Viewed (0)