org.eclipse.jetty.util
Class MultiPartOutputStream

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

public class MultiPartOutputStream
extends java.io.FilterOutputStream

Handle a multipart MIME response.


Field Summary
static java.lang.String MULTIPART_MIXED
           
static java.lang.String MULTIPART_X_MIXED_REPLACE
           
 
Fields inherited from class java.io.FilterOutputStream
out
 
Constructor Summary
MultiPartOutputStream(java.io.OutputStream out)
           
 
Method Summary
 void close()
          End the current part.
 java.lang.String getBoundary()
           
 java.io.OutputStream getOut()
           
 void startPart(java.lang.String contentType)
          Start creation of the next Content.
 void startPart(java.lang.String contentType, java.lang.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 java.lang.String MULTIPART_MIXED

MULTIPART_X_MIXED_REPLACE

public static java.lang.String MULTIPART_X_MIXED_REPLACE
Constructor Detail

MultiPartOutputStream

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

close

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

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

getBoundary

public java.lang.String getBoundary()

getOut

public java.io.OutputStream getOut()

startPart

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

Throws:
java.io.IOException

startPart

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

Throws:
java.io.IOException


Copyright © 1995-2010 Mort Bay Consulting. All Rights Reserved.