Java Hex Calculate toHex(final byte[] bytes)

Here you can find the source of toHex(final byte[] bytes)

Description

to Hex

License

Apache License

Declaration

private static String toHex(final byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static String toHex(final byte[] bytes) {
        StringBuilder sb = new StringBuilder(bytes.length);
        for (int i = 0; i < bytes.length; i++) {
            sb.append(Integer.toString((bytes[i] & 0xff) + 0x100, 16).substring(1));
        }//from  w w  w  . jav a  2s.  c o m

        return sb.toString();
    }
}

Related

  1. toHex(final byte[] ba)
  2. toHex(final byte[] ba)
  3. toHex(final byte[] bytes)
  4. toHex(final byte[] bytes)
  5. toHex(final byte[] bytes)
  6. toHex(final byte[] bytes)
  7. toHex(final byte[] bytes)
  8. toHex(final byte[] bytes)
  9. tohex(final byte[] bytes)