Example usage for org.json.zip BitInputStream read

List of usage examples for org.json.zip BitInputStream read

Introduction

In this page you can find the example usage for org.json.zip BitInputStream read.

Prototype

public int read(int width) throws IOException 

Source Link

Document

Read some bits.

Usage

From source file:bit.changepurse.wdk.util.CheckedExceptionMethods.java

public static int readBits(BitInputStream is, int numBits) {
    try {/* w  w  w. j  a va 2s .  c  o m*/
        return is.read(numBits);
    } catch (IOException e) {
        throw new UncheckedException(e);
    }
}