Java Byte Array to Hex byteToHex(byte[] array)

Here you can find the source of byteToHex(byte[] array)

Description

Converts a byte array to a hex string.

License

Apache License

Parameter

Parameter Description
array byte array to convert

Return

hexadecimal string representation of the byte array

Declaration

public static String byteToHex(byte[] array) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2014 Katja Hahn/*from   w ww.java  2  s. c o  m*/
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/

public class Main {
    /**
     * Converts a byte array to a hex string.
     * <p>
     * Every single byte is shown in the string, also prepended zero bytes.
     * Single bytes are delimited with a space character.
     * 
     * @param array
     *            byte array to convert
     * @return hexadecimal string representation of the byte array
     */
    public static String byteToHex(byte[] array) {
        StringBuilder buffer = new StringBuilder();
        for (int i = 0; i < array.length; i++) {
            if ((array[i] & 0xff) < 0x10) {
                buffer.append("0");
            }
            buffer.append(Integer.toString(array[i] & 0xff, 16) + " ");
        }
        return buffer.toString().trim();
    }
}

Related

  1. byteToHex(byte b)
  2. byteToHex(byte b[])
  3. byteToHex(byte b[])
  4. byteToHex(byte bytes[])
  5. byteToHex(byte data)
  6. byteToHex(byte[] array, String separator)
  7. byteToHex(byte[] b, int size)
  8. byteToHex(byte[] base)
  9. byteToHex(byte[] buf)