All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.joyzl.codec.BigEndianInputStream Maven / Gradle / Ivy

The newest version!
/*-
 * www.joyzl.net
 * 中翌智联(重庆)科技有限公司
 * Copyright © JOY-Links Company. All rights reserved.
 */
package com.joyzl.codec;

import java.io.IOException;
import java.io.InputStream;

public class BigEndianInputStream extends InputStream implements BigEndianDataInput {

	private final InputStream input;

	public BigEndianInputStream(InputStream in) {
		input = in;
	}

	@Override
	public byte readByte() throws IOException {
		return (byte) input.read();
	}

	@Override
	public int read() throws IOException {
		return input.read();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy