java.io
Class InputStream
java.lang.Object
java.io.InputStream
- Direct Known Subclasses:
- ByteArrayInputStream, FileInputStream, FilterInputStream, ObjectInputStream, PipedInputStream, SequenceInputStream
public abstract class InputStream
- extends Object
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
InputStream
public InputStream()
available
public int available()
throws IOException
- Throws:
IOException
close
public void close()
throws IOException
- Throws:
IOException
mark
public void mark(int var0)
markSupported
public boolean markSupported()
read
public abstract int read()
throws IOException
- Throws:
IOException
read
public int read(byte[] var0)
throws IOException
- Throws:
IOException
read
public int read(byte[] var0,
int var1,
int var2)
throws IOException
- Throws:
IOException
reset
public void reset()
throws IOException
- Throws:
IOException
skip
public long skip(long var0)
throws IOException
- Throws:
IOException
Copyright © 2006-2010 OSGi Alliance. All Rights Reserved.