All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----MSBMail.MimeEncoder
The mime encoder, implements the BASE64 and QUOTED_PRINTABLE encoding algorithms. You can use this class to encode and decode data. However you dont need to do it the POP connection and the MailMsg class will do it for you.
public static final int NO_ENCODE
public static final int BASE64
public static final int QUOTED
public MimeEncoder()
public static byte[] decodeB64(String DataIn)
decodes a base64 encoded string
public static String decodeQuoted(String DataIn)
decodes a "quoted-printable" encoded string
public static String encodeB64(byte DataIn[])
encodes with base64.
public static String encodeQuoted(String DataIn)
encodes with "quoted-printable".
All Packages Class Hierarchy This Package Previous Next Index