微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

有没有办法为Java的Charset名称添加别名

我得到一个异常,埋没在第三方库中,有这样的消息:

java.io.UnsupportedEncodingException: BIG-5

我认为这是因为Java没有为java.nio.charset.Charset定义这个名称. Charset.forName(“big5”)很好,但Charset.forName(“big-5”)抛出异常. (所有这些名称似乎都不区分大小写.)

这与“utf-8”不同,后者有一些别名更宽容.例如,Charset.forName(“utf8”)和Charset.forName(“utf-8”)都可以正常工作.

问题:有没有办法添加别名,以便“big-5”映射到“big5”?

最佳答案
您可以尝试mail.mime.contenttypehandler系统属性

In some cases JavaMail is unable to process messages with an invalid Content-Type header. The header may have incorrect Syntax or other problems. This property specifies the name of a class that will be used to clean up the Content-Type header value before JavaMail uses it. The class must have a method with this signature: public static String cleanContentType(MimePart mp,String contentType) Whenever JavaMail accesses the Content-Type header of a message,it will pass the value to this method and use the returned value instead.

一个例子是:

import java.util.Arrays;
import javax.mail.Session;
import javax.mail.internet.ContentType;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimePart;

public class FixEncodingName {

    public static void main(String[] args) throws Exception {
        MimeMessage msg = new MimeMessage((Session) null);
        msg.setText("test","big-5");
        msg.saveChanges();
        System.out.println(msg.getContentType());
        System.out.println(Arrays.toString(msg.getHeader("Content-Type")));
    }

    public static String cleanContentType(MimePart p,String mimeType) {
        if (mimeType != null) {
            String newContentType = mimeType;
            try {
                ContentType ct = new ContentType(mimeType);
                String cs = ct.getParameter("charset");
                if ("big-5".equalsIgnoreCase(cs)) {
                    ct.setParameter("charset","big5");
                    newContentType = ct.toString();
                }
            } catch (Exception ignore) {
                newContentType = newContentType.replace("big-5","big5");
            }

            /*try { //Fix the header in the message.
                p.setContent(p.getContent(),newContentType);
                if (p instanceof Message) {
                    ((Message) p).saveChanges();
                }
            } catch (Exception ignore) {
            }*/
            return newContentType;
        }
        return mimeType;
    }
}

当使用-Dmail.mime.contenttypehandler = FixEncodingName运行时将输出

text/plain; charset=big5
[text/plain; charset=big-5]

原文地址:https://www.jb51.cc/java/437363.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐