Java Byte Array to Hex byteToBcd(byte src)

Here you can find the source of byteToBcd(byte src)

Description

byte To Bcd

License

Apache License

Declaration

private static byte byteToBcd(byte src) 

Method Source Code

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

public class Main {

    private static byte byteToBcd(byte src) {
        byte re = src;
        if (src <= 0x39 && src >= 0x30)
            re = (byte) (src - 0x30);
        else if (src <= 0x46 && src >= 0x41)
            re = (byte) (src - 0x37);
        else if (src <= 0x66 && src >= 0x61)
            re = (byte) (src - 0x57);
        return re;
    }//from   www . ja v  a 2s . c  om
}

Related

  1. bytesToHex(final byte[] bytes)
  2. bytesToHex(final byte[] bytes, final boolean toLowerCase)
  3. bytesToHex(final byte[] bytes, final int position, final int length)
  4. bytesToHex(StringBuffer buff, byte[] src, int start, int end)
  5. bytesToUnsignedHexes(byte[] bytes)
  6. byteToHex(byte b)
  7. byteToHex(byte b)
  8. byteToHex(byte b[])
  9. byteToHex(byte b[])