Example usage for org.apache.commons.codec.net QuotedPrintableCodec encodeQuotedPrintable

List of usage examples for org.apache.commons.codec.net QuotedPrintableCodec encodeQuotedPrintable

Introduction

In this page you can find the example usage for org.apache.commons.codec.net QuotedPrintableCodec encodeQuotedPrintable.

Prototype

public static final byte[] encodeQuotedPrintable(BitSet printable, byte[] bytes) 

Source Link

Document

Encodes an array of bytes into an array of quoted-printable 7-bit characters.

Usage

From source file:org.gcaldaemon.core.ldap.ContactLoader.java

private static final String encodeQuotedPrintable(String string) throws Exception {
    byte[] bytes = StringUtils.encodeString(string, StringUtils.UTF_8);
    bytes = QuotedPrintableCodec.encodeQuotedPrintable(null, bytes);
    return StringUtils.decodeToString(bytes, StringUtils.US_ASCII);
}