Java Byte Array Convert To bytesToMac(byte[] bytes)

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

Description

bytes To Mac

License

Apache License

Declaration

public static String bytesToMac(byte[] bytes) 

Method Source Code

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

public class Main {
    public static String bytesToMac(byte[] bytes) {
        StringBuffer sb = new StringBuffer();
        for (int i = 0; i < bytes.length; i++) {
            String s = Integer.toHexString(0xFF & bytes[i]).toUpperCase();
            if (i > 0) {
                sb.append(":");
            }//from  ww  w .j a v  a  2  s. com
            if (s.length() == 1) {
                sb.append("0");
            }
            sb.append(s);
        }
        return sb.toString();
    }
}

Related

  1. bytesToDec(byte[] bytes)
  2. bytesToEntryCreditAddress(byte[] key)
  3. BytesToInt(byte abyte0[], int offset)
  4. bytesToIpString(byte[] bytes)
  5. bytesToLength(final byte bytes[])
  6. bytesToMac(final byte[] bytes)
  7. bytesToNumber(byte[] buffer, int start, int length)
  8. bytesToPdu(byte[] bytes)
  9. bytesToSectors(long bytes)