|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.commons.httpclient.methods.multipart.Part
Abstract class for one Part of a multipart post object.
Field Summary | |
protected static java.lang.String |
BOUNDARY
The boundary |
protected static byte[] |
BOUNDARY_BYTES
The boundary as a byte array |
protected static java.lang.String |
CHARSET
Content charset |
protected static byte[] |
CHARSET_BYTES
Content charset as a byte array |
protected static java.lang.String |
CONTENT_DISPOSITION
Content dispostion characters |
protected static byte[] |
CONTENT_DISPOSITION_BYTES
Content dispostion as a byte array |
protected static java.lang.String |
CONTENT_TRANSFER_ENCODING
Content type header |
protected static byte[] |
CONTENT_TRANSFER_ENCODING_BYTES
Content type header as a byte array |
protected static java.lang.String |
CONTENT_TYPE
Content type header |
protected static byte[] |
CONTENT_TYPE_BYTES
Content type header as a byte array |
protected static java.lang.String |
CRLF
Carriage return/linefeed |
protected static byte[] |
CRLF_BYTES
Carriage return/linefeed as a byte array |
protected static java.lang.String |
EXTRA
Extra characters |
protected static byte[] |
EXTRA_BYTES
Extra characters as a byte array |
protected static java.lang.String |
QUOTE
Content dispostion characters |
protected static byte[] |
QUOTE_BYTES
Content dispostion as a byte array |
Constructor Summary | |
Part()
|
Method Summary | |
static java.lang.String |
getBoundary()
Return the boundary string. |
abstract java.lang.String |
getCharSet()
Return the character encoding of this part. |
abstract java.lang.String |
getContentType()
Returns the content type of this part. |
static long |
getLengthOfParts(Part[] parts)
Return the total sum of all parts and that of the last boundary |
abstract java.lang.String |
getName()
Return the name of this part. |
abstract java.lang.String |
getTransferEncoding()
Return the transfer encoding of this part. |
long |
length()
Return the full length of all the data. |
protected abstract long |
lengthOfData()
Return the length of the main content |
void |
send(java.io.OutputStream out)
Write all the data to the output stream. |
protected void |
sendContentTypeHeader(java.io.OutputStream out)
Write the content type header to the specified output stream |
protected abstract void |
sendData(java.io.OutputStream out)
Write the data to the specified output stream |
protected void |
sendDispositionHeader(java.io.OutputStream out)
Write the content disposition header to the specified output stream |
protected void |
sendEnd(java.io.OutputStream out)
Write the end data to the output stream. |
protected void |
sendEndOfHeader(java.io.OutputStream out)
Write the end of the header to the output stream |
static void |
sendParts(java.io.OutputStream out,
Part[] parts)
Write all parts and the last boundary to the specified output stream |
protected void |
sendStart(java.io.OutputStream out)
Write the start to the specified output stream |
protected void |
sendTransferEncodingHeader(java.io.OutputStream out)
Write the content transfer encoding header to the specified output stream |
java.lang.String |
toString()
Return a string representation of this object. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
Field Detail |
protected static final java.lang.String BOUNDARY
protected static final byte[] BOUNDARY_BYTES
protected static final java.lang.String CRLF
protected static final byte[] CRLF_BYTES
protected static final java.lang.String QUOTE
protected static final byte[] QUOTE_BYTES
protected static final java.lang.String EXTRA
protected static final byte[] EXTRA_BYTES
protected static final java.lang.String CONTENT_DISPOSITION
protected static final byte[] CONTENT_DISPOSITION_BYTES
protected static final java.lang.String CONTENT_TYPE
protected static final byte[] CONTENT_TYPE_BYTES
protected static final java.lang.String CHARSET
protected static final byte[] CHARSET_BYTES
protected static final java.lang.String CONTENT_TRANSFER_ENCODING
protected static final byte[] CONTENT_TRANSFER_ENCODING_BYTES
Constructor Detail |
public Part()
Method Detail |
public static java.lang.String getBoundary()
public abstract java.lang.String getName()
public abstract java.lang.String getContentType()
null
to exclude the content type headerpublic abstract java.lang.String getCharSet()
null
to exclude the character
encoding headerpublic abstract java.lang.String getTransferEncoding()
null
to exclude the transfer encoding headerprotected void sendStart(java.io.OutputStream out) throws java.io.IOException
out
- The output streamprotected void sendDispositionHeader(java.io.OutputStream out) throws java.io.IOException
out
- The output streamprotected void sendContentTypeHeader(java.io.OutputStream out) throws java.io.IOException
out
- The output streamprotected void sendTransferEncodingHeader(java.io.OutputStream out) throws java.io.IOException
out
- The output streamprotected void sendEndOfHeader(java.io.OutputStream out) throws java.io.IOException
out
- The output streamprotected abstract void sendData(java.io.OutputStream out) throws java.io.IOException
out
- The output streamprotected abstract long lengthOfData() throws java.io.IOException
protected void sendEnd(java.io.OutputStream out) throws java.io.IOException
out
- The output streampublic void send(java.io.OutputStream out) throws java.io.IOException
out
- The output streampublic long length() throws java.io.IOException
public java.lang.String toString()
Object.toString()
public static void sendParts(java.io.OutputStream out, Part[] parts) throws java.io.IOException
out
- The output streamparts
- The array of parts to be sentpublic static long getLengthOfParts(Part[] parts) throws java.io.IOException
parts
- The array of parts
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |