I want to print the date in French. For example, January, not January.
I use this:
SimpleDateFormat mDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.FRENCH); Date date = null; try { date = mDateFormat.parse(document.date); } catch (ParseException e) {
But that will not work!
Does anyone have an idea how I can do this?
source share