|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.ning.http.multipart.Part
com.ning.http.multipart.PartBase
com.ning.http.multipart.FilePart
public class FilePart
This class is an adaptation of the Apache HttpClient implementation
| Field Summary | |
|---|---|
static String |
DEFAULT_CHARSET
Default charset of file attachments. |
static String |
DEFAULT_CONTENT_TYPE
Default content encoding of file attachments. |
static String |
DEFAULT_TRANSFER_ENCODING
Default transfer encoding of file attachments. |
protected static String |
FILE_NAME
Attachment's file name |
| Fields inherited from class com.ning.http.multipart.Part |
|---|
BOUNDARY, CHARSET, CONTENT_DISPOSITION, CONTENT_TRANSFER_ENCODING, CONTENT_TYPE, CRLF, EXTRA, QUOTE |
| Constructor Summary | |
|---|---|
FilePart(String name,
File file)
FilePart Constructor. |
|
FilePart(String name,
File file,
String contentType,
String charset)
FilePart Constructor. |
|
FilePart(String name,
PartSource partSource)
FilePart Constructor. |
|
FilePart(String name,
PartSource partSource,
String contentType,
String charset)
FilePart Constructor. |
|
FilePart(String name,
String fileName,
File file)
FilePart Constructor. |
|
FilePart(String name,
String fileName,
File file,
String contentType,
String charset)
FilePart Constructor. |
|
| Method Summary | |
|---|---|
protected PartSource |
getSource()
Returns the source of the file part. |
protected long |
lengthOfData()
Return the length of the data. |
protected void |
sendData(OutputStream out)
Write the data in "source" to the specified stream. |
protected void |
sendDispositionHeader(OutputStream out)
Write the disposition header to the output stream |
| Methods inherited from class com.ning.http.multipart.PartBase |
|---|
getCharSet, getContentType, getName, getTransferEncoding, setCharSet, setContentType, setName, setTransferEncoding |
| Methods inherited from class com.ning.http.multipart.Part |
|---|
getBoundary, getLengthOfParts, getLengthOfParts, getPartBoundary, isRepeatable, length, send, sendContentTypeHeader, sendEnd, sendEndOfHeader, sendMessageEnd, sendPart, sendParts, sendParts, sendStart, sendTransferEncodingHeader, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final String DEFAULT_CONTENT_TYPE
public static final String DEFAULT_CHARSET
public static final String DEFAULT_TRANSFER_ENCODING
protected static final String FILE_NAME
| Constructor Detail |
|---|
public FilePart(String name,
PartSource partSource,
String contentType,
String charset)
name - the name for this partpartSource - the source for this partcontentType - the content type for this part, if null the
default is usedcharset - the charset encoding for this part, if null the
default is used
public FilePart(String name,
PartSource partSource)
name - the name for this partpartSource - the source for this part
public FilePart(String name,
File file)
throws FileNotFoundException
name - the name of the file partfile - the file to post
FileNotFoundException - if the file is not a normal
file or if it is not readable.
public FilePart(String name,
File file,
String contentType,
String charset)
throws FileNotFoundException
name - the name of the file partfile - the file to postcontentType - the content type for this part, if null the
default is usedcharset - the charset encoding for this part, if null the
default is used
FileNotFoundException - if the file is not a normal
file or if it is not readable.
public FilePart(String name,
String fileName,
File file)
throws FileNotFoundException
name - the name of the file partfileName - the file namefile - the file to post
FileNotFoundException - if the file is not a normal
file or if it is not readable.
public FilePart(String name,
String fileName,
File file,
String contentType,
String charset)
throws FileNotFoundException
name - the name of the file partfileName - the file namefile - the file to postcontentType - the content type for this part, if null the
default is usedcharset - the charset encoding for this part, if null the
default is used
FileNotFoundException - if the file is not a normal
file or if it is not readable.| Method Detail |
|---|
protected void sendDispositionHeader(OutputStream out)
throws IOException
sendDispositionHeader in class Partout - The output stream
IOException - If an IO problem occurs
protected void sendData(OutputStream out)
throws IOException
sendData in class Partout - The output stream.
IOException - if an IO problem occurs.protected PartSource getSource()
protected long lengthOfData()
throws IOException
lengthOfData in class PartIOException - if an IO problem occurs
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||