Package jakarta.mail.internet
Class PreencodedMimeBodyPart
java.lang.Object
jakarta.mail.BodyPart
jakarta.mail.internet.MimeBodyPart
jakarta.mail.internet.PreencodedMimeBodyPart
A MimeBodyPart that handles data that has already been encoded.
This class is useful when constructing a message and attaching
data that has already been encoded (for example, using base64
encoding). The data may have been encoded by the application,
or may have been stored in a file or database in encoded form.
The encoding is supplied when this object is created. The data
is attached to this object in the usual fashion, by using the
setText
, setContent
, or
setDataHandler
methods.- Since:
- JavaMail 1.4
-
Field Summary
Fields inherited from class jakarta.mail.internet.MimeBodyPart
cachedContent, content, contentStream, dh, headers
Fields inherited from class jakarta.mail.BodyPart
parent, streamProvider
Fields inherited from interface jakarta.mail.Part
ATTACHMENT, INLINE
-
Constructor Summary
ConstructorDescriptionPreencodedMimeBodyPart
(String encoding) Create a PreencodedMimeBodyPart that assumes the data is encoded using the specified encoding. -
Method Summary
Modifier and TypeMethodDescriptionReturns the content transfer encoding specified when this object was created.protected void
Force theContent-Transfer-Encoding
header to use the encoding that was specified when this object was created.void
writeTo
(OutputStream os) Output the body part as an RFC 822 format stream.Methods inherited from class jakarta.mail.internet.MimeBodyPart
addHeader, addHeaderLine, attachFile, attachFile, attachFile, attachFile, getAllHeaderLines, getAllHeaders, getContent, getContentID, getContentLanguage, getContentMD5, getContentStream, getContentType, getDataHandler, getDescription, getDisposition, getFileName, getHeader, getHeader, getInputStream, getLineCount, getMatchingHeaderLines, getMatchingHeaders, getNonMatchingHeaderLines, getNonMatchingHeaders, getRawInputStream, getSize, isMimeType, removeHeader, saveFile, saveFile, setContent, setContent, setContentID, setContentLanguage, setContentMD5, setDataHandler, setDescription, setDescription, setDisposition, setFileName, setHeader, setText, setText, setText
-
Constructor Details
-
PreencodedMimeBodyPart
Create a PreencodedMimeBodyPart that assumes the data is encoded using the specified encoding. The encoding must be a MIME supported Content-Transfer-Encoding.- Parameters:
encoding
- the Content-Transfer-Encoding
-
-
Method Details
-
getEncoding
Returns the content transfer encoding specified when this object was created.- Specified by:
getEncoding
in interfaceMimePart
- Overrides:
getEncoding
in classMimeBodyPart
- Returns:
- content-transfer-encoding
- Throws:
MessagingException
- for failures- See Also:
-
writeTo
Output the body part as an RFC 822 format stream.- Specified by:
writeTo
in interfacePart
- Overrides:
writeTo
in classMimeBodyPart
- Parameters:
os
- the stream to write to- Throws:
IOException
- if an error occurs writing to the stream or if an error is generated by the jakarta.activation layer.MessagingException
- for other failures- See Also:
-
updateHeaders
Force theContent-Transfer-Encoding
header to use the encoding that was specified when this object was created.- Overrides:
updateHeaders
in classMimeBodyPart
- Throws:
MessagingException
- for failures
-