Specifications
Sun Services
Java™ Programming Language
Module 14, slide 7 of 22
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
The InputStream Methods
• The three basic read methods are:
int read()
int read(byte[] buffer)
int read(byte[] buffer, int offset, int length)
• Other methods include:
void close()
int available()
long skip(long n)
boolean markSupported()
void mark(int readlimit)
void reset()










