Package davaguine.jmac.tools

Examples of davaguine.jmac.tools.ByteArrayReader.readInt()


    private final static int RIFF_CHUNK_HEADER_SIZE = 8;

    public void read(File io) throws IOException {
        ByteArrayReader reader = new ByteArrayReader(io, RIFF_CHUNK_HEADER_SIZE);
        cChunkLabel = reader.readInt();
        nChunkBytes = reader.readUnsignedInt();
    }
}
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.