How do I decode quoted-printable using Java. I am reading mail from the server and fetching some data from mail using regex. My mail content type is text/html
and because of this, I am getting HTML tags along with the data, making it very difficult for me to do the pattern matching. It is showing some characters like =20
, =cF
, etc.
How can I resolve this problem?