Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for applyPattern (0.17 sec)

  1. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        public static String formatNumber(final long value, final String pattern) {
            final DecimalFormat df = (DecimalFormat) NumberFormat.getNumberInstance(getUserLocale());
            df.applyPattern(pattern);
            return df.format(value);
        }
    
        private static Locale getUserLocale() {
            final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale == null) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
Back to top