Package i2p.susi.webmail.encoding
Class HTML
java.lang.Object
i2p.susi.webmail.encoding.Encoding
i2p.susi.webmail.encoding.HTML
- Author:
- user
-
Constructor Details
-
HTML
public HTML()
-
-
Method Details
-
getName
-
encode
Description copied from class:Encoding
Encode a byte array to a ASCII or ISO-8859-1 String. Output must be SMTP-safe: Line length of 998 or less, using SMTP-safe characters, followed by \r\n, and must not start with a '.' unless escaped by a 2nd dot. For some encodings, max line length is 76.- Specified by:
encode
in classEncoding
- Returns:
- Encoded string.
- Throws:
EncodingException
-
encode
Description copied from class:Encoding
Encode a (UTF-8) String to a ASCII or ISO-8859-1 String. Output must be SMTP-safe: Line length of 998 or less, using SMTP-safe characters, followed by \r\n, and must not start with a '.' unless escaped by a 2nd dot. For some encodings, max line length is 76. This implementation just converts the string to a byte array and then calls encode(byte[]). Most classes will not need to override.- Overrides:
encode
in classEncoding
- Throws:
EncodingException
- See Also:
-
decode
- Specified by:
decode
in classEncoding
- Throws:
DecodingException
- See Also:
-