List of utility methods to do OutputStream Write Long
void | writeInt(long v, OutputStream out) write Int out.write((int) ((v >>> 0) & 0xff)); out.write((int) ((v >>> 8) & 0xff)); out.write((int) ((v >>> 16) & 0xff)); out.write((int) ((v >>> 24) & 0xff)); |
void | writeInt32LE(OutputStream os, long val) write Int LE writeInt32LE(os, (int) val); |
void | writeInt3BE(OutputStream out, long v) write Int BE byte[] b3 = new byte[3]; putInt3BE(b3, 0, v); out.write(b3); |