BCD编码及转码

2024-03-19 21:58
文章标签 编码 转码 bcd

本文主要是介绍BCD编码及转码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

简单介绍

摘取一段百度百科介绍:
BCD码(Binary-Coded Decimal‎),用4位二进制数来表示1位十进制数中的0~9这10个数码,是一种二进制的数字编码形式,用二进制编码的十进制代码。

常见的BCD码又分8421码、5421码、2421码、余3码、余3循环码。

个人理解BCD码:将十进制数压缩存储。

拿8421(四位,每位为1代表十进制数。1110等于8+4+2+0 = 14)BCD码举例:
十进制数40
4转成8421格式二进制:0100
0转成8421格式二进制:0000

众所周知:
4个二进制 = 1个十六进制
2个十六进制 = 1个字节(byte)

即:
十进制数40 = 0100 0000 = 0x40 = @ (0x40 = @ 参考ascii对照规则)
看结果,原来十进制数40占用两个字节的存储空间,现在@字符只用占用一个。

转码使用

经过介绍,知道BCD是可以将原来存储空间缩减大约一半(分奇偶长度考虑,偶数一半,奇数差一点)。

对于奇数长度的十进制压缩成BCD码,就存在一个问题,到底是左对齐还是右对齐。

推荐一个前辈写的bcd转码方法

/** j8583 A Java implementation of the ISO8583 protocol* Copyright (C) 2007 Enrique Zamudio Lopez** This library is free software; you can redistribute it and/or* modify it under the terms of the GNU Lesser General Public* License as published by the Free Software Foundation; either* version 3 of the License, or (at your option) any later version.** This library is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU* Lesser General Public License for more details.** You should have received a copy of the GNU Lesser General Public* License along with this library; if not, write to the Free Software* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA*/
package com.swiftplus.posservice.prepose.iso8583.util;import java.math.BigInteger;
import java.text.ParseException;/*** Routines for Binary Coded Digits.** @author Enrique Zamudio*         Date: 23/04/13 11:24*/
public final class Bcd {private Bcd(){}/** Decodes a BCD-encoded number as a long.* @param buf The byte buffer containing the BCD data.* @param pos The starting position in the buffer.* @param length The number of DIGITS (not bytes) to read. */public static long decodeToLong(byte[] buf, int pos, int length)throws IndexOutOfBoundsException {if (length > 18) {throw new IndexOutOfBoundsException("Buffer too big to decode as long");}long l = 0;long power = 1L;for (int i = pos + (length / 2) + (length % 2) - 1; i >= pos; i--) {l += (buf[i] & 0x0f) * power;power *= 10L;l += ((buf[i] & 0xf0) >> 4) * power;power *= 10L;}return l;}public static long decodeRightPaddedToLong(byte[] buf, int pos, int length)throws IndexOutOfBoundsException {if (length > 18) {throw new IndexOutOfBoundsException("Buffer too big to decode as long");}long l = 0;long power = 1L;int end = pos + (length / 2) + (length % 2) - 1;if ((buf[end] & 0xf) == 0xf) {l += (buf[end] & 0xf0) >> 4;power *= 10L;end--;}for (int i = end; i >= pos; i--) {l += (buf[i] & 0x0f) * power;power *= 10L;l += ((buf[i] & 0xf0) >> 4) * power;power *= 10L;}return l;}/** Encode the value as BCD and put it in the buffer. The buffer must be big enough* to store the digits in the original value (half the length of the string). */public static void encode(String value, byte[] buf) {int charpos = 0; //char where we startint bufpos = 0;if (value.length() % 2 == 1) {//for odd lengths we encode just the first digit in the first bytebuf[0] = (byte)(value.charAt(0) - 48);charpos = 1;bufpos = 1;}//encode the rest of the stringwhile (charpos < value.length()) {buf[bufpos] = (byte)(((value.charAt(charpos) - 48) << 4)| (value.charAt(charpos + 1) - 48));charpos += 2;bufpos++;}}/** Encode the value as BCD and put it in the buffer. The buffer must be big enough* to store the digits in the original value (half the length of the string).* If the value contains an odd number of digits, the last one is stored in* its own byte at the end, padded with an F nibble. */public static void encodeRightPadded(String value, byte[] buf) {int bufpos = 0;int charpos = 0;int limit = value.length();if (limit % 2 == 1) {limit--;}//encode the rest of the stringwhile (charpos < limit) {buf[bufpos] = (byte)(((value.charAt(charpos) - 48) << 4)| (value.charAt(charpos + 1) - 48));charpos += 2;bufpos++;}if (value.length() % 2 == 1) {buf[bufpos] = (byte)(((value.charAt(limit) - 48) << 4)| 0xf);}}/** Decodes a BCD-encoded number as a BigInteger.* @param buf The byte buffer containing the BCD data.* @param pos The starting position in the buffer.* @param length The number of DIGITS (not bytes) to read. */public static BigInteger decodeToBigInteger(byte[] buf, int pos, int length)throws IndexOutOfBoundsException {char[] digits = new char[length];int start = 0;int i = pos;if (length % 2 != 0) {digits[start++] = (char)((buf[i] & 0x0f) + 48);i++;}for (;i < pos + (length / 2) + (length % 2); i++) {digits[start++] = (char)(((buf[i] & 0xf0) >> 4) + 48);digits[start++] = (char)((buf[i] & 0x0f) + 48);}return new BigInteger(new String(digits));}/** Decodes a right-padded BCD-encoded number as a BigInteger.* @param buf The byte buffer containing the BCD data.* @param pos The starting position in the buffer.* @param length The number of DIGITS (not bytes) to read. */public static BigInteger decodeRightPaddedToBigInteger(byte[] buf, int pos, int length)throws IndexOutOfBoundsException {char[] digits = new char[length];int start = 0;int i = pos;int limit = pos + (length / 2) + (length % 2);for (;i < limit; i++) {digits[start++] = (char)(((buf[i] & 0xf0) >> 4) + 48);int r = buf[i] & 0xf;digits[start++] = r == 15 ? ' ' : (char)(r + 48);}return new BigInteger(new String(digits, 0, start).trim());}/** Convert two bytes of BCD length to an int,* e.g. 0x4521 into 4521, starting at the specified offset. */public static int parseBcdLength(byte b) {return (((b & 0xf0) >> 4) * 10) + (b & 0xf);}/** Convert two bytes of BCD length to an int,* e.g. 0x4521 into 4521, starting at the specified offset. */public static int parseBcdLength2bytes(byte[] b, int offset) {return (((b[offset] & 0xf0) >> 4) * 1000) + ((b[offset] & 0xf) * 100) +(((b[offset + 1] & 0xf0) >> 4) * 10) + (b[offset + 1] & 0xf);}
}

decodeToLong 解码BCD成long型(左补,右靠)
decodeRightPaddedToLong 解码BCD成long型 (右补,左靠)
decodeToBigInteger 解码BCD成BigInteger型(左补,右靠)
decodeRightPaddedToBigInteger 解码BCD成BigInteger型(右补,左靠)
encode 压缩成BCD码(左补,右靠)
encodeRightPadded 压缩成BCD码(右补,左靠)

动手测试下,偶数:

public static void main(String[] args) throws Exception {byte[] buf = new byte[1];Bcd.encode("40",buf);System.out.println(new String(buf));System.out.println(Bcd.decodeToLong(buf, 0, 1));System.out.println(Bcd.decodeRightPaddedToLong(buf, 0, 1));Bcd.encodeRightPadded("40",buf);System.out.println(new String(buf));System.out.println(Bcd.decodeToLong(buf, 0, 1));System.out.println(Bcd.decodeRightPaddedToLong(buf, 0, 1));
}

结果:
在这里插入图片描述

奇数:

public static void main(String[] args) throws Exception {byte[] buf = new byte[2];Bcd.encode("120",buf);System.out.println(new String(buf));System.out.println(Bcd.decodeToLong(buf, 0, 3));System.out.println(Bcd.decodeRightPaddedToLong(buf, 0, 3));Bcd.encodeRightPadded("123",buf);System.out.println(new String(buf));System.out.println(Bcd.decodeToLong(buf, 0, 3));System.out.println(Bcd.decodeRightPaddedToLong(buf, 0, 3));
}

结果:
在这里插入图片描述

这玩意奇数还是的考虑清楚压缩对齐方式,以上。

这篇关于BCD编码及转码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/827351

相关文章

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

form表单提交编码的问题

浏览器在form提交后,会生成一个HTTP的头部信息"content-type",标准规定其形式为Content-type: application/x-www-form-urlencoded; charset=UTF-8        那么我们如果需要修改编码,不使用默认的,那么可以如下这样操作修改编码,来满足需求: hmtl代码:   <meta http-equiv="Conte

4-4.Andorid Camera 之简化编码模板(获取摄像头 ID、选择最优预览尺寸)

一、Camera 简化思路 在 Camera 的开发中,其实我们通常只关注打开相机、图像预览和关闭相机,其他的步骤我们不应该花费太多的精力 为此,应该提供一个工具类,它有处理相机的一些基本工具方法,包括获取摄像头 ID、选择最优预览尺寸以及打印相机参数信息 二、Camera 工具类 CameraIdResult.java public class CameraIdResult {

Python字符编码及应用

字符集概念 字符集就是一套文字符号及其编码的描述。从第一个计算机字符集ASCII开始,为了处理不同的文字,发明过几百种字符集,例如ASCII、USC、GBK、BIG5等,这些不同的字符集从收录到编码都各不相同。在编程中出现比较严重的问题是字符乱码。 几个概念 位:计算机的最小单位二进制中的一位,用二进制的0,1表示。 字节:八位组成一个字节。(位与字节有对应关系) 字符:我们肉眼可见的文字与符号。

在Eclipse环境下修改Tomcat编码的问题

问题: 由于BMS需要设置UTF-8编码,要不就会出现中文乱码问题; 一、项目保持UTF-8格式; 二、由于可能会多次移除项目、加载项目,不想每次都要修改tmp0\conf 原因: 如果在eclipse中配置了tomcat后,其实,tomcat所用的所有tomcat配置文件,都不是catalina_home/config下面的xml文件,而是在eclipse所创建的Serve

在Unity环境中使用UTF-8编码

为什么要讨论这个问题         为了避免乱码和更好的跨平台         我刚开始开发时是使用VS开发,Unity自身默认使用UTF-8 without BOM格式,但是在Unity中创建一个脚本,使用VS打开,VS自身默认使用GB2312(它应该是对应了你电脑的window版本默认选取了国标编码,或者是因为一些其他的原因)读取脚本,默认是看不到在VS中的编码格式,下面我介绍一种简单快

霍夫曼编码/译码器

赫夫曼树的应用 1、哈夫曼编码   在数据通信中,需要将传送的文字转换成二进制的字符串,用0,1码的不同排列来表示字符。例如,需传送的报文为“AFTER DATA EAR ARE ART AREA”,这里用到的字符集为“A,E,R,T,F,D”,各字母出现的次数为{8,4,5,3,1,1}。现要求为这些字母设计编码。要区别6个字母,最简单的二进制编码方式是等长编码,固定采用3位二进制,可分别用

Base64编码 及 在HTML中用Base编码直接显示图片或嵌入其他文件类型

1.为什么要用到BASE64编码的图片信息      Base64是网络上最常见的用于传输8Bit字节代码的编码方式之一。Base64 主要不是加密,它主要的用途是把一些二进制数转成普通字符用于网络传输。由于一些二进制字符在传输协议中属于控制字符,不能直接传送需要转换一下。最常见的用途是作为电子邮件或WebService附件的传输编码.  2.base64编码定义    目前的internet

批量文件编码转换用python实现的utf8转gb2312,vscode设置特殊文件的默认打开编码

批量文件编码转换用python实现的utf8转gb2312, 任意编码之间的相互转换都是可以的.改一下下面的参数即可 convert.py文件内容如下 import osimport globimport chardet#检测文件编码类型def detect_file_encoding(file_path):with open(file_path, 'rb') as f:data = f