質問

I would like to use javax.mail.internet.MimeUtility to decode a "quoted-printable" string. I do not need any other interface to a mail server. What's the best way to get at that class (and its dependencies)? Alternatively, is there a better way to parse "quoted-printable" strings?

役に立ちましたか?

解決

I don't know of anything in the standard J2SE API for this. However, a quick Google search turns up this decoder code. I can't vouch for it, but it looks reasonable. You can probably find others yourself.

他のヒント

The Apache Commons Codec library also has support for quoted printable and is available under the more permissive apache license.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top