org.mortbay.util
Class MultiPartOutputStream
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
org.mortbay.util.MultiPartOutputStream
- All Implemented Interfaces:
- Closeable, Flushable
public class MultiPartOutputStream
- extends FilterOutputStream
Handle a multipart MIME response.
- Author:
- Greg Wilkins, Jim Crossley
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MULTIPART_MIXED
public static String MULTIPART_MIXED
MULTIPART_X_MIXED_REPLACE
public static String MULTIPART_X_MIXED_REPLACE
MultiPartOutputStream
public MultiPartOutputStream(OutputStream out)
throws IOException
- Throws:
IOException
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