Package com.peterhi.runtime

Examples of com.peterhi.runtime.BitStream.toByteArray()


    bs1.writeBit(1);
    bs1.skipWrite(7);
    bs1.writeBit(1);
    byte[] data = new byte[] { 1, 1 };
    assertArrayEquals(data, bs0.toByteArray());
    assertArrayEquals(data, bs1.toByteArray());
   
    try {
      bs0.skipWrite(-1);
      fail();
    } catch (IllegalArgumentException ex) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.