org.mortbay.util
Class MultiPartOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by java.io.FilterOutputStream
          extended by org.mortbay.util.MultiPartOutputStream
All Implemented Interfaces:
Closeable, Flushable

public class MultiPartOutputStream
extends FilterOutputStream

Handle a multipart MIME response.

Author:
Greg Wilkins, Jim Crossley

Field Summary
static String MULTIPART_MIXED
           
static String MULTIPART_X_MIXED_REPLACE
           
 
Fields inherited from class java.io.FilterOutputStream
out
 
Constructor Summary
MultiPartOutputStream(OutputStream out)
           
 
Method Summary
 void close()
          End the current part.
 String getBoundary()
           
 OutputStream getOut()
           
 void startPart(String contentType)
          Start creation of the next Content.
 void startPart(String contentType, String[] headers)
          Start creation of the next Content.
 
Methods inherited from class java.io.FilterOutputStream
flush, write, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MULTIPART_MIXED

public static String MULTIPART_MIXED

MULTIPART_X_MIXED_REPLACE

public static String MULTIPART_X_MIXED_REPLACE
Constructor Detail

MultiPartOutputStream

public MultiPartOutputStream(OutputStream out)
                      throws IOException
Throws:
IOException
Method Detail

close

public void close()
           throws IOException
End the current part.

Specified by:
close in interface Closeable
Overrides:
close in class FilterOutputStream
Throws:
IOException - IOException

getBoundary

public String getBoundary()

getOut

public OutputStream getOut()

startPart

public void startPart(String contentType)
               throws IOException
Start creation of the next Content.

Throws:
IOException

startPart

public void startPart(String contentType,
                      String[] headers)
               throws IOException
Start creation of the next Content.

Throws:
IOException