public final class PagedBytes.PagedBytesDataOutput extends DataOutput
Constructor and Description |
---|
PagedBytesDataOutput() |
Modifier and Type | Method and Description |
---|---|
long |
getPosition()
Return the current byte position.
|
void |
writeByte(byte b)
Writes a single byte.
|
void |
writeBytes(byte[] b,
int offset,
int length)
Writes an array of bytes.
|
copyBytes, writeBytes, writeInt, writeLong, writeMapOfStrings, writeSetOfStrings, writeShort, writeString, writeVInt, writeVLong, writeZInt, writeZLong
public void writeByte(byte b)
DataOutput
The most primitive data type is an eight-bit byte. Files are accessed as sequences of bytes. All other data types are defined as sequences of bytes, so file formats are byte-order independent.
writeByte
in class DataOutput
DataInput.readByte()
public void writeBytes(byte[] b, int offset, int length)
DataOutput
writeBytes
in class DataOutput
b
- the bytes to writeoffset
- the offset in the byte arraylength
- the number of bytes to writeDataInput.readBytes(byte[],int,int)
public long getPosition()
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.