Here you can find the source of bitSet2extendedByte(BitSet b)
Parameter | Description |
---|---|
b | the BitSet |
public static byte[] bitSet2extendedByte(BitSet b)
//package com.java2s; /*//from w w w . j a v a 2 s . c o m * jPOS Project [http://jpos.org] * Copyright (C) 2000-2012 Alejandro P. Revilla * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ import java.util.BitSet; public class Main { /** * Converts a BitSet into an extended binary field used in pack routines. * The result is always in the extended format: (16 bytes of length) <br> * <br> * * @param b the BitSet * @return binary representation */ public static byte[] bitSet2extendedByte(BitSet b) { int len = 128; byte[] d = new byte[len >> 3]; for (int i = 0; i < len; i++) if (b.get(i + 1)) d[i >> 3] |= (0x80 >> (i % 8)); d[0] |= 0x80; return d; } }