KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > io > DataInput

java.io
Interface DataInput

All Known Subinterfaces:
ImageInputStream, ImageOutputStream, ObjectInput
All Known Implementing Classes:
DataInputStream, FileCacheImageInputStream, FileCacheImageOutputStream, FileImageInputStream, FileImageOutputStream, ImageInputStreamImpl, ImageOutputStreamImpl, MemoryCacheImageInputStream, MemoryCacheImageOutputStream, ObjectInputStream, RandomAccessFile
See Also:
Top Examples, Source Code, DataOutput

boolean readBoolean()
                    throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


byte readByte()
              throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


char readChar()
              throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


double readDouble()
                  throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


float readFloat()
                throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void readFully(byte[] b)
               throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void readFully(byte[] b,
               int off,
               int len)
               throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int readInt()
            throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String readLine()
                throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


long readLong()
              throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


short readShort()
                throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int readUnsignedByte()
                     throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int readUnsignedShort()
                      throws IOException
See Also:
EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String readUTF()
               throws IOException
See Also:
UTFDataFormatException, EOFException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int skipBytes(int n)
              throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags