java.io
Class OutputStream

java.lang.Object
  extended by java.io.OutputStream
Direct Known Subclasses:
ByteArrayOutputStream, FileOutputStream, FilterOutputStream, ObjectOutputStream, PipedOutputStream

public abstract class OutputStream
extends Object


Constructor Summary
OutputStream()
           
 
Method Summary
 void close()
           
 void flush()
           
 void write(byte[] var0)
           
 void write(byte[] var0, int var1, int var2)
           
abstract  void write(int var0)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OutputStream

public OutputStream()
Method Detail

close

public void close()
           throws IOException
Throws:
IOException

flush

public void flush()
           throws IOException
Throws:
IOException

write

public void write(byte[] var0)
           throws IOException
Throws:
IOException

write

public void write(byte[] var0,
                  int var1,
                  int var2)
           throws IOException
Throws:
IOException

write

public abstract void write(int var0)
                    throws IOException
Throws:
IOException


Copyright © 2006-2010 OSGi Alliance. All Rights Reserved.