新加坡的字体是繁体字还是简体字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新加坡的字体是繁体字还是简体字相关的知识,希望对你有一定的参考价值。

参考技术A 新加坡的官方中文用字是简体字。
新加坡:1969年公布第一批简体字502个,除了67字(称为“异体简化字”),均与中国公布的简化字相同。1974年,又公布《简体字总表》,收简体字2248个,包括了中国公布的所有简化字,以及10个中国尚未简化的,如“要”、“窗”。1976年5月,颁布《简体字总表》修订本,删除这10个简化字和异体简体字,从而与中国的《简化字总表》完全一致。

java 获取当前手机的语言环境的工具类,包括判断是简体还是繁体,以及判断当前环境是否是简体中文

public class LanguageUtils {

    // ===========================================================
    // Constants
    // ===========================================================

    public static final String LOCALE_CHINESE_SIMPLE = "zh-Hans";
    public static final String LOCALE_CHINESE_TRADITIONAL = "zh-Hant";

    // ===========================================================
    // Define Methods
    // ===========================================================
    /**
     * 获取语言环境
     */
    public static String getLanguage() {
        String resultLanguage = "";
        String language = Locale.getDefault().getLanguage();
        if (!TextUtils.isEmpty(language)) {
            if ("zh".equals(language)) {
                String country = Locale.getDefault().getCountry();
                resultLanguage = LOCALE_CHINESE_SIMPLE;
                if (!TextUtils.isEmpty(country)
                    && !(country.equalsIgnoreCase("CN") || country.equalsIgnoreCase("CHN"))) {
                    resultLanguage = LOCALE_CHINESE_TRADITIONAL;
                }
            } else {
                resultLanguage = language;
            }
        }
        return resultLanguage;
    }

    /**
     * 判断当前的系统是否为简体中文环境
     * @return
     */
    public static final boolean isSimpleChineseSystem() {
        Locale locale = Locale.getDefault();
        String language = locale.getLanguage();
        String country = locale.getCountry();
        if (language != null && "zh".equalsIgnoreCase(language)) {
            if ("cn".equalsIgnoreCase(country)) {
                return true;
            }
        }
        return false;
    }

}

以上是关于新加坡的字体是繁体字还是简体字的主要内容,如果未能解决你的问题,请参考以下文章

别人发给我的繁体邮件如何转为简体的?

怎么把繁体字转化成简体字

js 简繁体字转换

粗体字的 Roboto 字体不可见

word 公式改斜体字

java 里面注释出来了繁体字