All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wings.util.LocaleCharSet Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2000,2005 wingS development team.
 *
 * This file is part of wingS (http://wingsframework.org).
 *
 * wingS is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1
 * of the License, or (at your option) any later version.
 *
 * Please see COPYING for the complete licence.
 */
package org.wings.util;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Locale;
import java.util.Properties;

/**
 * Map {@link java.util.Locale} to html/iso character set via org/wings/util/charset.properties.
 *
 * @author Andre Lison
 */
public class LocaleCharSet {
    /**
     * The default character encoding "UTF-8".
     */
    public final static String DEFAULT_ENCODING = "UTF-8";

    private final static String CHARSET_PROPERTIES = "org/wings/util/charset.properties";
    private final static Logger log = LoggerFactory.getLogger(LocaleCharSet.class);
    private Properties charsetMap;
    private static LocaleCharSet instance = null;

    protected LocaleCharSet() {
        try {
            charsetMap = PropertyDiscovery.loadRequiredProperties(CHARSET_PROPERTIES);
        } catch (Exception e) {
            log.warn("Unexpected error on loading " + CHARSET_PROPERTIES + " via class path.", e);
            charsetMap = new Properties();
        }
    }

    /**
     * Get a instance of LocaleCharSet.
     *
     * @return Instance of LocaleCharset
     */
    public static LocaleCharSet getInstance() {
        if (instance == null) {
            instance = new LocaleCharSet();
        }
        return instance;
    }

    /**
     * Try to find a matching character set for this locale.
     *
     * @param aLocale The Locale to retrieve the default charset for.
     * @return if found the charset, DEFAULT_ENCODING otherwise
     */
    public String getCharSet(Locale aLocale) {
        if (aLocale == null) {
            return DEFAULT_ENCODING;
        }

        String charset = charsetMap.getProperty(aLocale.getCountry() + "_" + aLocale.getLanguage());

        if (charset == null) {
            charset = charsetMap.getProperty(aLocale.getCountry());
        }

        if (charset == null) {
            charset = charsetMap.getProperty(aLocale.getLanguage());
        }

        return charset != null ? charset : DEFAULT_ENCODING;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy