1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| abstract void write_any(Any value) abstract void write_boolean_array(boolean[] value, int offset, int length)
abstract void write_boolean(boolean value)
abstract void write_char_array(char[] value, int offset, int length)
abstract void write_char(char value)
void write_Context(Context ctx, ContextList contexts)
abstract void write_double_array(double[] value, int offset, int length)
abstract void write_double(double value)
void write_fixed(BigDecimal value)
abstract void write_float_array(float[] value, int offset, int length)
abstract void write_float(float value)
abstract void write_long_array(int[] value, int offset, int length) 大专栏 JavaIO 流(1)IO流介绍> abstract void write_long(int value)
abstract void write_longlong_array(long[] value, int offset, int length)
abstract void write_longlong(long value) W abstract void write_Object(Object value)
abstract void write_octet_array(byte[] value, int offset, int length)
abstract void write_octet(byte value)
void write_Principal(Principal value)
abstract void write_short_array(short[] value, int offset, int length)
abstract void write_short(short value)
abstract void write_string(String value)
abstract void write_TypeCode(TypeCode value)
abstract void write_ulong_array(int[] value, int offset, int length)
abstract void write_ulong(int value)
abstract void write_ulonglong_array(long[] value, int offset, int length)
abstract void write_ulonglong(long value)
void write(int b)
|