Search code examples
javajava-8datetime-formatjava-time

Get original pattern String given a JDK 8 DateTimeFormatter?


Related to my question Where are the Java 8 DateTimeFormatters constants defined? - how do I get the original pattern String given a DateTimeFormatter?


Solution

  • It's been asked on the mailing list and the answer is that it is not possible because the original pattern is not retained.

    The same thread suggests using a DateTimeFormatterBuilder which does have the information.