public class SimpleOutputStream
| 构造器和说明 |
|---|
SimpleOutputStream(int size) |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
available() |
SimpleOutputStream |
clone() |
void |
close() |
byte[] |
getCore() |
int |
getPtr() |
void |
setPtr(int p) |
void |
write(byte b) |
void |
write(int b) |
void |
write(byte[] byteArray) |
void |
writeFrom(SimpleInputStream stream,
int length) |
void |
writeLength(byte[] byteArray,
int begin,
int length) |
void |
writeRange(byte[] byteArray,
int begin,
int end) |
public byte[] getCore()
public int getPtr()
public void setPtr(int p)
public int available()
public void write(byte b)
public void write(int b)
public void write(byte[] byteArray)
public void writeLength(byte[] byteArray,
int begin,
int length)
public void writeRange(byte[] byteArray,
int begin,
int end)
public void writeFrom(SimpleInputStream stream, int length)
public void close()
public SimpleOutputStream clone()