全パッケージ クラス階層 このパッケージ 前項目 次項目 インデックス
 
 readBoolean()
	readBoolean()
  boolean データを読み込む。
   readByte()
	readByte()
   readChar()
	readChar()
  char データを読み込む。
   readDouble()
	readDouble()
  double データを読み込む。
   readFloat()
	readFloat()
  float データを読み込む。
   readFully(byte[])
	readFully(byte[])
  b.length バイトを読み、バイト配列に格納する。
   readFully(byte[], int, int)
	readFully(byte[], int, int)
  b.length バイト(複数)を読み、バイト配列に格納する。
   readInt()
	readInt()
  int データを読み込む。
   readLine()
	readLine()
   readLong()
	readLong()
  long データを読み込む。
   readShort()
	readShort()
   readUnsignedByte()
	readUnsignedByte()
   readUnsignedShort()
	readUnsignedShort()
   readUTF()
	readUTF()
   skipBytes(int)
	skipBytes(int)
  n バイト分スキップする。
 
 readFully
readFully
public abstract void readFully(byte b[]) throws IOException
b.length バイトを読み込みます。このメソッドは全てのバイトを読み終わるまで制御をブロックします。
 readFully
readFully
 public abstract void readFully(byte b[],
                                int off,
                                int len) throws IOException
len で示されるバイト数のデータをバイト配列に読み込みます。このメソッドは全てのバイトを読み終わるまで制御をブロックします。
 skipBytes
skipBytes
public abstract int skipBytes(int n) throws IOException
n バイトのデータだけをスキップします。
nに等しい。
     readBoolean
readBoolean
public abstract boolean readBoolean() throws IOException
boolean データを読み込みます。
boolean の値。
     readByte
readByte
public abstract byte readByte() throws IOException
 readUnsignedByte
readUnsignedByte
public abstract int readUnsignedByte() throws IOException
 readShort
readShort
public abstract short readShort() throws IOException
 readUnsignedShort
readUnsignedShort
public abstract int readUnsignedShort() throws IOException
 readChar
readChar
public abstract char readChar() throws IOException
char データを読み込みます。
char の値。
     readInt
readInt
public abstract int readInt() throws IOException
int データを読み込みます。
int の値。
     readLong
readLong
public abstract long readLong() throws IOException
long データを読み込みます。
long の値。
     readFloat
readFloat
public abstract float readFloat() throws IOException
float データを読み込みます。
float の値。
     readDouble
readDouble
public abstract double readDouble() throws IOException
double データを読み込みます。
double の値。
     readLine
readLine
public abstract String readLine() throws IOException
 readUTF
readUTF
public abstract String readUTF() throws IOException
この方法の厳密な解説については Gosling, Joy, and Steele, The Java Language Specification を参照してください。
全パッケージ クラス階層 このパッケージ 前項目 次項目 インデックス