当前位置: 首页>>代码示例>>Java>>正文


Java BitSource.getBitOffset方法代码示例

本文整理汇总了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;
        }
    }
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:23,代码来源:DecodedBitStreamParser.java

示例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);
}
 
开发者ID:amap-demo,项目名称:weex-3d-map,代码行数:31,代码来源:DecodedBitStreamParser.java


注:本文中的com.google.zxing.common.BitSource.getBitOffset方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。