public class FilePart extends PartBase
| 限定符和类型 | 字段和说明 |
|---|---|
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
|
BOUNDARY, BOUNDARY_BYTES, CHARSET, CHARSET_BYTES, CONTENT_DISPOSITION, CONTENT_DISPOSITION_BYTES, CONTENT_TRANSFER_ENCODING, CONTENT_TRANSFER_ENCODING_BYTES, CONTENT_TYPE, CONTENT_TYPE_BYTES, CRLF, CRLF_BYTES, EXTRA, EXTRA_BYTES, QUOTE, QUOTE_BYTES| 构造器和说明 |
|---|
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.
|
| 限定符和类型 | 方法和说明 |
|---|---|
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
|
getCharSet, getContentType, getName, getTransferEncoding, setCharSet, setContentType, setName, setTransferEncodinggetBoundary, getLengthOfParts, getLengthOfParts, getPartBoundary, isRepeatable, length, send, sendContentTypeHeader, sendEnd, sendEndOfHeader, sendParts, sendParts, sendStart, sendTransferEncodingHeader, toStringpublic static final String DEFAULT_CONTENT_TYPE
public static final String DEFAULT_CHARSET
public static final String DEFAULT_TRANSFER_ENCODING
public FilePart(String name, PartSource partSource, String contentType, String charset)
public FilePart(String name, PartSource partSource)
name - the name for this partpartSource - the source for this partpublic FilePart(String name, File file) throws FileNotFoundException
name - the name of the file partfile - the file to postFileNotFoundException - 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 usedFileNotFoundException - 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 postFileNotFoundException - 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 usedFileNotFoundException - if the file is not a normal
file or if it is not readable.protected void sendDispositionHeader(OutputStream out) throws IOException
sendDispositionHeader 在类中 Partout - The output streamIOException - If an IO problem occursPart.sendDispositionHeader(OutputStream)protected void sendData(OutputStream out) throws IOException
sendData 在类中 Partout - The output stream.IOException - if an IO problem occurs.Part.sendData(OutputStream)protected PartSource getSource()
protected long lengthOfData()
throws IOException
lengthOfData 在类中 PartIOException - if an IO problem occursPart.lengthOfData()Copyright © 2017. All rights reserved.