Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fess (0.14 sec)

  1. src/main/java/org/codelibs/core/misc/LocaleUtil.java

         * {@link Locale}を返します。
         *
         * @param localeStr
         *            ロケールを表す文字列
         * @return {@link Locale}
         */
        public static Locale getLocale(final String localeStr) {
            // TODO replace with Fess
            Locale locale = LocaleUtil.getDefault();
            if (localeStr != null) {
                final int index = localeStr.indexOf('_');
                if (index < 0) {
                    locale = new Locale(localeStr);
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top