0

Like org.apache.commons.codec.binary.Base64InputStream which converts given inputstream to base64inputstream, i want class which should converts inputstream to quoted-printable inputstream.

Please help to find one.

Roshan
  • 2,019
  • 8
  • 36
  • 56

1 Answers1

0

I found the answer. I used james code.

org.apache.james.mime4j.codec.Base64InputStream; org.apache.james.mime4j.codec.QuotedPrintableInputStream;

I used these two for respective encoding.

Roshan
  • 2,019
  • 8
  • 36
  • 56