Package | Description |
---|---|
java.io | |
java.lang | |
java.lang.reflect | |
java.util |
Modifier and Type | Method and Description |
---|---|
int |
FileInputStream.read(byte[] b,
int off,
int len) |
int |
FilterInputStream.read(byte[] b,
int off,
int len) |
int |
LineNumberInputStream.read(byte[] b,
int off,
int len) |
int |
PushbackInputStream.read(byte[] b,
int off,
int len) |
int |
RandomAccessFile.read(byte[] b,
int off,
int len) |
int |
SequenceInputStream.read(byte[] b,
int off,
int len) |
void |
RandomAccessFile.readFully(byte[] b) |
void |
FileOutputStream.write(byte[] b,
int off,
int len) |
void |
FilterOutputStream.write(byte[] b,
int off,
int len) |
void |
OutputStream.write(byte[] b,
int off,
int len) |
void |
PrintStream.write(byte[] b,
int off,
int len) |
void |
RandomAccessFile.write(byte[] b,
int off,
int len) |
Modifier and Type | Method and Description |
---|---|
static void |
System.arraycopy(Object src,
int srcOffset,
Object dst,
int dstOffset,
int length) |
void |
String.getBytes(int srcBegin,
int srcEnd,
byte[] dst,
int dstBegin)
Deprecated.
|
Constructor and Description |
---|
String(byte[] value,
int offset,
int count) |
String(byte[] value,
int hibyte,
int offset,
int count) |
String(char[] value,
int offset,
int count) |
Modifier and Type | Method and Description |
---|---|
static Object |
Array.get(Object array,
int index) |
static boolean |
Array.getBoolean(Object array,
int index) |
static byte |
Array.getByte(Object array,
int index) |
static char |
Array.getChar(Object array,
int index) |
static double |
Array.getDouble(Object array,
int index) |
static float |
Array.getFloat(Object array,
int index) |
static int |
Array.getInt(Object array,
int index) |
static long |
Array.getLong(Object array,
int index) |
static short |
Array.getShort(Object array,
int index) |
static void |
Array.set(Object array,
int index,
Object value) |
static void |
Array.setBoolean(Object array,
int index,
boolean z) |
static void |
Array.setByte(Object array,
int index,
byte b) |
static void |
Array.setChar(Object array,
int index,
char c) |
static void |
Array.setDouble(Object array,
int index,
double d) |
static void |
Array.setFloat(Object array,
int index,
float f) |
static void |
Array.setInt(Object array,
int index,
int i) |
static void |
Array.setLong(Object array,
int index,
long l) |
static void |
Array.setShort(Object array,
int index,
short s) |
Modifier and Type | Method and Description |
---|---|
void |
Vector.copyInto(Object[] anArray) |
int |
Vector.indexOf(Object elem,
int index) |
void |
Vector.insertElementAt(Object obj,
int index) |
int |
Vector.lastIndexOf(Object elem,
int index) |
void |
Vector.removeElementAt(int index) |
void |
Vector.setElementAt(Object obj,
int index) |
void |
Vector.setSize(int newSize) |