本文整理了Java中java.io.ObjectInputStream.readUnsignedByte()
方法的一些代码示例,展示了ObjectInputStream.readUnsignedByte()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ObjectInputStream.readUnsignedByte()
方法的具体详情如下:
包路径:java.io.ObjectInputStream
类名称:ObjectInputStream
方法名:readUnsignedByte
[英]Reads an unsigned byte (8 bit) from the source stream.
[中]从源流中读取无符号字节(8位)。
代码示例来源:origin: redisson/redisson
@Override
public int readUnsignedByte() throws IOException {
return wrapped.readUnsignedByte();
}
代码示例来源:origin: apache/ignite
/** {@inheritDoc} */
@Override public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: apache/ignite
/** {@inheritDoc} */
@Override public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: wildfly/wildfly
/** {@inheritDoc} */
public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: RuedigerMoeller/fast-serialization
@Override
public int readUnsignedByte() throws IOException {
return wrapped.readUnsignedByte();
}
代码示例来源:origin: org.apache.ignite/ignite-core
/** {@inheritDoc} */
@Override public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: org.apache.ignite/ignite-core
/** {@inheritDoc} */
@Override public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: org.jboss.eap/wildfly-client-all
/** {@inheritDoc} */
public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: org.jboss.marshalling/jboss-marshalling
/** {@inheritDoc} */
public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: org.jboss.marshalling/jboss-marshalling-osgi
/** {@inheritDoc} */
public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: babyfish-ct/babyfish
@Override
public int readUnsignedByte() throws IOException {
return this.raw.readUnsignedByte();
}
代码示例来源:origin: jboss-remoting/jboss-marshalling
/** {@inheritDoc} */
public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: jboss-remoting/jboss-marshalling
/** {@inheritDoc} */
public int readUnsignedByte() throws IOException {
return ois.readUnsignedByte();
}
代码示例来源:origin: org.cojen/dirmi
public int readUnsignedByte() throws IOException {
return mIn.readUnsignedByte();
}
代码示例来源:origin: org.hobsoft.symmetry/symmetry-ui
private void readObject(ObjectInputStream in) throws IOException
{
boolean hasRow = in.readBoolean();
row = hasRow ? in.readInt() : -1;
column = in.readUnsignedByte();
}
}
代码示例来源:origin: com.google.javascript/closure-compiler
token = Token.values()[in.readUnsignedByte()];
sourcePosition = readEncodedInt(in);
length = readEncodedInt(in);
内容来源于网络,如有侵权,请联系作者删除!