jcifs.smb
public class SmbRandomAccessFile extends Object implements DataOutput, DataInput
Constructor Summary | |
---|---|
SmbRandomAccessFile(String url, String mode, int shareAccess) | |
SmbRandomAccessFile(SmbFile file, String mode) |
Method Summary | |
---|---|
void | close() |
long | getFilePointer() |
long | length() |
int | read() |
int | read(byte[] b) |
int | read(byte[] b, int off, int len) |
boolean | readBoolean() |
byte | readByte() |
char | readChar() |
double | readDouble() |
float | readFloat() |
void | readFully(byte[] b) |
void | readFully(byte[] b, int off, int len) |
int | readInt() |
String | readLine() |
long | readLong() |
short | readShort() |
int | readUnsignedByte() |
int | readUnsignedShort() |
String | readUTF() |
void | seek(long pos) |
void | setLength(long newLength) |
int | skipBytes(int n) |
void | write(int b) |
void | write(byte[] b) |
void | write(byte[] b, int off, int len) |
void | writeBoolean(boolean v) |
void | writeByte(int v) |
void | writeBytes(String s) |
void | writeChar(int v) |
void | writeChars(String s) |
void | writeDouble(double v) |
void | writeFloat(float v) |
void | writeInt(int v) |
void | writeLong(long v) |
void | writeShort(int v) |
void | writeUTF(String str) |