本文整理汇总了Java中com.google.zxing.common.BitSource.getBitOffset方法的典型用法代码示例。如果您正苦于以下问题:Java BitSource.getBitOffset方法的具体用法?Java BitSource.getBitOffset怎么用?Java BitSource.getBitOffset使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.zxing.common.BitSource
的用法示例。
在下文中一共展示了BitSource.getBitOffset方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: decodeEdifactSegment
import com.google.zxing.common.BitSource; //导入方法依赖的package包/类
private static void decodeEdifactSegment(BitSource bits, StringBuilder result) {
while (bits.available() > 16) {
for (int i = 0; i < 4; i++) {
int edifactValue = bits.readBits(6);
if (edifactValue == 31) {
int bitsLeft = 8 - bits.getBitOffset();
if (bitsLeft != 8) {
bits.readBits(bitsLeft);
return;
}
return;
}
if ((edifactValue & 32) == 0) {
edifactValue |= 64;
}
result.append((char) edifactValue);
}
if (bits.available() <= 0) {
return;
}
}
}
示例2: decodeEdifactSegment
import com.google.zxing.common.BitSource; //导入方法依赖的package包/类
/**
* See ISO 16022:2006, 5.2.8 and Annex C Table C.3
*/
private static void decodeEdifactSegment(BitSource bits, StringBuilder result) {
do {
// If there is only two or less bytes left then it will be encoded as ASCII
if (bits.available() <= 16) {
return;
}
for (int i = 0; i < 4; i++) {
int edifactValue = bits.readBits(6);
// Check for the unlatch character
if (edifactValue == 0x1F) { // 011111
// Read rest of byte, which should be 0, and stop
int bitsLeft = 8 - bits.getBitOffset();
if (bitsLeft != 8) {
bits.readBits(bitsLeft);
}
return;
}
if ((edifactValue & 0x20) == 0) { // no 1 in the leading (6th) bit
edifactValue |= 0x40; // Add a leading 01 to the 6 bit binary value
}
result.append((char) edifactValue);
}
} while (bits.available() > 0);
}