I already know how to find the "short" date-format pattern Java is using for a particular locale. However, in C# I can go further than this; I can find all customary "short" date format patterns for a particular locale.
Java, Pre SE 8
- Is it possible to do the same thing in Java?
- If yes, are the values returned standard to the Java platform, or are they OS specific? In other words, could the results I receive vary based on my installation or environment? Java Localized Date Formats
Based on this SO answer, I suspect the date formats (Pre SE 8) are not dependent on the OS.
Java, Post SE 8
- Is it possible to do the same thing in Java?
- If yes, are the values returned standard to the Java platform, or are they OS specific? In other words, could the results I receive vary based on my installation or environment?