Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for toHex (0.01 seconds)

  1. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * Converts a byte array to a hexadecimal string.
         *
         * @param bytes
         *            the byte array
         * @return the hexadecimal string
         */
        public static String toHex(final byte[] bytes) {
            if (bytes == null) {
                return "";
            }
            final StringBuilder sb = new StringBuilder(bytes.length * 2);
            for (final byte b : bytes) {
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Feb 12 12:10:45 GMT 2026
    - 21.5K bytes
    - Click Count (0)
Back to Top