Module com.sun.xml.messaging.saaj
Class QEncoderStream
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
com.sun.xml.messaging.saaj.packaging.mime.util.QPEncoderStream
com.sun.xml.messaging.saaj.packaging.mime.util.QEncoderStream
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
This class implements a Q Encoder as defined by RFC 2047 for
encoding MIME headers. It subclasses the QPEncoderStream class.
-
Field Summary
Fields inherited from class java.io.FilterOutputStream
out
-
Constructor Summary
ConstructorDescriptionQEncoderStream
(OutputStream out, boolean encodingWord) Create a Q encoder that encodes the specified input stream -
Method Summary
Modifier and TypeMethodDescriptionstatic int
encodedLength
(byte[] b, boolean encodingWord) Returns the length of the encoded version of this byte array.void
write
(int c) Encodes the specifiedbyte
to this output stream.Methods inherited from class com.sun.xml.messaging.saaj.packaging.mime.util.QPEncoderStream
close, flush, output, write, write
Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
QEncoderStream
Create a Q encoder that encodes the specified input stream- Parameters:
out
- the output streamencodingWord
- true if we are Q-encoding a word within a phrase.
-
-
Method Details
-
write
Encodes the specifiedbyte
to this output stream.- Overrides:
write
in classQPEncoderStream
- Parameters:
c
- thebyte
.- Throws:
IOException
- if an I/O error occurs.
-
encodedLength
public static int encodedLength(byte[] b, boolean encodingWord) Returns the length of the encoded version of this byte array.- Parameters:
b
- byte array.encodingWord
- whether use word or text specials.- Returns:
- length.
-