com.joyzl.codec.BigEndianInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odbs Show documentation
Show all versions of odbs Show documentation
Java对象序列化,同时支持二进制和JSON格式
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();
}
}