Java BitSet Convert bitSet2extendedByte(BitSet b)

Here you can find the source of bitSet2extendedByte(BitSet b)

Description

Converts a BitSet into an extended binary field used in pack routines.

License

Open Source License

Parameter

Parameter Description
b the BitSet

Return

binary representation

Declaration

public static byte[] bitSet2extendedByte(BitSet b) 

Method Source Code

//package com.java2s;
/*/*www. j  av a  2 s  .  com*/
 * jPOS Project [http://jpos.org]
 * Copyright (C) 2000-2019 jPOS Software SRL
 *
 * 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.*;

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;
    }
}

Related

  1. bitSet2byte(BitSet b)
  2. bitSet2Int(BitSet bs)
  3. bitSet2String(BitSet b)