I\'m trying to do a simple date format, it does work great, it\'s very easy, but the problem is the language. I used the locale \"es_ES\" to get \"Miércoles\" instead of \"W
LocalDate today = LocalDate.now(); String day = today.getDayOfWeek().getDisplayName(TextStyle.FULL, new Locale("es","ES")));
Also works for month.