public class ByteArrayDataOutput extends DataOutput
| Constructor and Description |
|---|
ByteArrayDataOutput() |
ByteArrayDataOutput(byte[] bytes) |
ByteArrayDataOutput(byte[] bytes,
int offset,
int len) |
| Modifier and Type | Method and Description |
|---|---|
int |
getPosition() |
void |
reset(byte[] bytes) |
void |
reset(byte[] bytes,
int offset,
int len) |
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, writeShort, writeString, writeStringSet, writeStringStringMap, writeVInt, writeVLongpublic ByteArrayDataOutput(byte[] bytes)
public ByteArrayDataOutput(byte[] bytes,
int offset,
int len)
public ByteArrayDataOutput()
public void reset(byte[] bytes)
public void reset(byte[] bytes,
int offset,
int len)
public int getPosition()
public void writeByte(byte b)
DataOutputThe 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 DataOutputDataInput.readByte()public void writeBytes(byte[] b,
int offset,
int length)
DataOutputwriteBytes in class DataOutputb - the bytes to writeoffset - the offset in the byte arraylength - the number of bytes to writeDataInput.readBytes(byte[],int,int)Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.