Java org.apache.commons.codec.net QuotedPrintableCodec fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.codec.net QuotedPrintableCodec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.codec.net QuotedPrintableCodec.

The text is from its open source code.

Constructor

QuotedPrintableCodec(String charset)
Constructor which allows for the selection of a default charset
QuotedPrintableCodec()
Default constructor.

Method

Stringdecode(String pString, String charset)
Decodes a quoted-printable string into its original form using the specified string charset.
byte[]decode(byte[] bytes)
Decodes an array of quoted-printable characters into an array of original bytes.
Stringdecode(String pString)
Decodes a quoted-printable string into its original form using the default string charset.
Objectdecode(Object pObject)
Decodes a quoted-printable object into its original form.
byte[]decodeQuotedPrintable(byte[] bytes)
Decodes an array quoted-printable characters into an array of original bytes.
byte[]encode(byte[] bytes)
Encodes an array of bytes into an array of quoted-printable 7-bit characters.
Stringencode(String pString)
Encodes a string into its quoted-printable form using the default string charset.
Objectencode(Object pObject)
Encodes an object into its quoted-printable safe form.
voidencodeQuotedPrintable(int b, ByteArrayOutputStream buffer)
Encodes byte into its quoted-printable representation.
byte[]encodeQuotedPrintable(BitSet printable, byte[] bytes)
Encodes an array of bytes into an array of quoted-printable 7-bit characters.