Java DateTimeFormatter createFormatterFromPatternString(String formatPattern, Locale locale)

Here you can find the source of createFormatterFromPatternString(String formatPattern, Locale locale)

Description

createFormatterFromPatternString, This creates a DateTimeFormatter from the supplied pattern string and supplied locale.

License

Open Source License

Declaration

public static DateTimeFormatter createFormatterFromPatternString(String formatPattern, Locale locale) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.time.format.*;

import java.util.Locale;

public class Main {
    /**//from w w  w  .  j a  va 2 s.c  o  m
     * createFormatterFromPatternString, This creates a DateTimeFormatter from the supplied pattern
     * string and supplied locale. The pattern will be created to be "lenient" and "case
     * insensitive", so it can be used for display or for user-friendly parsing. Information about
     * creating a pattern string can be found in the DateTimeFormatter class Javadocs. @see
     * <a href="https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html">
     * The DateTimeFormatter Javadocs </a>
     *
     * Note: It is important to use the letter "u" (astronomical year) instead of "y" (year of era)
     * when creating pattern strings for BCE dates. This is because the DatePicker uses ISO 8601,
     * which specifies "Astronomical year numbering". (Additional details: The astronomical year
     * "-1" and "1 BC" are not the same thing. Astronomical years are zero-based, and BC dates are
     * one-based. Astronomical year "0", is the same year as "1 BC", and astronomical year "-1" is
     * the same year as "2 BC", and so forth.)
     */
    public static DateTimeFormatter createFormatterFromPatternString(String formatPattern, Locale locale) {
        DateTimeFormatter formatter = new DateTimeFormatterBuilder().parseLenient().parseCaseInsensitive()
                .appendPattern(formatPattern).toFormatter(locale);
        return formatter;
    }
}

Related

  1. convertToEpochMillis(String logTimestamp, DateTimeFormatter logTimeFormat)
  2. create14DigitDateTimeFormat()
  3. dateTimeFormatterNCForPattern(String pattern)
  4. format(DateTimeFormatter formatter, Object object)
  5. format(long epochMilliSecond)
  6. formatAgo(long timestamp)