I need to parse a String to Date in Java. The problematic scenario is when the full date pattern is used and it depends on a specific locale (that I don't know previously)
For example, using pattern "EEEE dd MMMM yyyy" two possible inputs are:
English = "Friday 10 November 2014"
Spanish = "Viernes 10 Noviembre 2014"
Is it possible to convert the above inputs to a Date object without to know the source locale?
Thanks.