|
MXQuery 0.6.0 API Documentation - Copyright 2006-2009 ETH Zurich | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectch.ethz.mxquery.model.ws.MultiPartFormOutputStream
public class MultiPartFormOutputStream
MultiPartFormOutputStream
is used to write
"multipart/form-data" to a java.net.URLConnection
for
POSTing. This is primarily for file uploading to HTTP servers.
Constructor Summary | |
---|---|
MultiPartFormOutputStream(java.io.OutputStream os,
java.lang.String boundary)
Creates a new MultiPartFormOutputStream object using
the specified output stream and boundary. |
Method Summary | |
---|---|
void |
close()
Closes the stream. |
static java.lang.String |
createBoundary()
Creates a multipart boundary string by concatenating 20 hyphens (-) and the hexadecimal (base-16) representation of the current time in milliseconds. |
static java.net.URLConnection |
createConnection(java.net.URL url)
Creates a new java.net.URLConnection object from the
specified java.net.URL . |
void |
flush()
Flushes the stream. |
java.lang.String |
getBoundary()
Gets the multipart boundary string being used by this stream. |
static java.lang.String |
getContentType(java.lang.String boundary)
Gets the content type string suitable for the java.net.URLConnection which includes the multipart
boundary string. |
void |
writeField(java.lang.String name,
boolean value)
Writes an boolean field value. |
void |
writeField(java.lang.String name,
char value)
Writes an char field value. |
void |
writeField(java.lang.String name,
double value)
Writes an double field value. |
void |
writeField(java.lang.String name,
float value)
Writes an float field value. |
void |
writeField(java.lang.String name,
int value)
Writes an int field value. |
void |
writeField(java.lang.String name,
long value)
Writes an long field value. |
void |
writeField(java.lang.String name,
short value)
Writes an short field value. |
void |
writeField(java.lang.String name,
java.lang.String value)
Writes an string field value. |
void |
writeFile(java.lang.String name,
java.lang.String mimeType,
java.io.File file)
Writes a file's contents. |
void |
writeFile(java.lang.String name,
java.lang.String mimeType,
java.lang.String fileName,
byte[] data)
Writes the given bytes. |
void |
writeFile(java.lang.String name,
java.lang.String mimeType,
java.lang.String fileName,
java.io.InputStream is)
Writes a input stream's contents. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MultiPartFormOutputStream(java.io.OutputStream os, java.lang.String boundary)
MultiPartFormOutputStream
object using
the specified output stream and boundary. The boundary is required
to be created before using this method, as described in the
description for the getContentType(String)
method.
The boundary is only checked for null
or empty string,
but it is recommended to be at least 6 characters. (Or use the
static createBoundary() method to create one.)
os
- the output streamboundary
- the boundarycreateBoundary()
,
getContentType(String)
Method Detail |
---|
public void writeField(java.lang.String name, boolean value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeField(java.lang.String name, double value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeField(java.lang.String name, float value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeField(java.lang.String name, long value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeField(java.lang.String name, int value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeField(java.lang.String name, short value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeField(java.lang.String name, char value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeField(java.lang.String name, java.lang.String value) throws java.io.IOException
name
- the field name (required)value
- the field value
java.io.IOException
- on input/output errorspublic void writeFile(java.lang.String name, java.lang.String mimeType, java.io.File file) throws java.io.IOException
java.lang.IllegalArgumentException
will be thrown.
name
- the field namemimeType
- the file content type (optional, recommended)file
- the file (the file must exist)
java.io.IOException
- on input/output errorspublic void writeFile(java.lang.String name, java.lang.String mimeType, java.lang.String fileName, java.io.InputStream is) throws java.io.IOException
java.lang.IllegalArgumentException
will be thrown.
name
- the field namemimeType
- the file content type (optional, recommended)fileName
- the file name (required)is
- the input stream
java.io.IOException
- on input/output errorspublic void writeFile(java.lang.String name, java.lang.String mimeType, java.lang.String fileName, byte[] data) throws java.io.IOException
java.lang.IllegalArgumentException
will be thrown.
name
- the field namemimeType
- the file content type (optional, recommended)fileName
- the file name (required)data
- the file data
java.io.IOException
- on input/output errorspublic void flush() throws java.io.IOException
java.io.IOException
- on input/output errorspublic void close() throws java.io.IOException
java.io.IOException
- on input/output errorspublic java.lang.String getBoundary()
public static java.net.URLConnection createConnection(java.net.URL url) throws java.io.IOException
java.net.URLConnection
object from the
specified java.net.URL
. This is a convenience method
which will set the doInput
, doOutput
,
useCaches
and defaultUseCaches
fields to
the appropriate settings in the correct order.
java.net.URLConnection
object for the URL
java.io.IOException
- on input/output errorspublic static java.lang.String createBoundary()
getContentType(String)
public static java.lang.String getContentType(java.lang.String boundary)
java.net.URLConnection
which includes the multipart
boundary string. java.net.URLConnection
class, once the output stream
for the connection is acquired, it's too late to set the content
type (or any other request parameter). So one has to create a
multipart boundary string first before using this class, such as
with the createBoundary()
method.
boundary
- the boundary string
createBoundary()
|
MXQuery 0.6.0 API Documentation - Copyright 2006-2009 ETH Zurich | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |