Java BitSet printBitSet(BitSet iBits, int length)

Here you can find the source of printBitSet(BitSet iBits, int length)

Description

print Bit Set

License

Apache License

Declaration

public static void printBitSet(BitSet iBits, int length) 

Method Source Code

//package com.java2s;
/**/* ww w .j a  v a  2 s  . co  m*/
 * Copyright 2005 Refactored Networks, LLC
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
    
 */

import java.util.BitSet;

public class Main {
    public static void printBitSet(BitSet iBits, int length) {
        System.out.println("--------------------------------");
        System.out.println("BitSet length is " + iBits.length());
        System.out.println("length is " + length);
        for (int i = 0; i < length; i++) {
            if (((i - 1) % 8) == 0) {
                System.out.print(" ");
            }
            if (iBits.get(i)) {
                System.out.print("1");
            } else {
                System.out.print("0");
            }
        }
        System.out.println("\n--------------------------------");
    }
}

Related

  1. pack(BitSet bitSet)
  2. padToByteBoundary(BitSet actualParameter, int sizeInBits, int byteBoundLength, boolean preserveFirstAsSign)
  3. parseBitSet(byte[] sfData, int offset, int length)
  4. pickRandomSetIndexFromBitSet(BitSet bitset)
  5. printBitSet(BitSet bs)
  6. readByte(BitSet bits, int startByte)
  7. reverse(final BitSet bitset, final int sizeInBits)
  8. reverseBitSet(BitSet bs)
  9. setBitIterator(final BitSet b)