* @return 解码后的文本
* @throws UnsupportedEncodingException
*/
public static String decodeText(String encodeText) throws UnsupportedEncodingException {
if (encodeText == null || "".equals(encodeText)) {
return "";
return MimeUtility.decodeText(encodeText);
}
}
}
测试结果:

作者:xyang81