java - Formatted date representation -
this question has answer here:
my date displayed in button in format
new simpledateformat("eeeeeeeeee mmmm dd yyyy") i.e.
wednesday 15 may 2013 but want capitalised each starting element i.e.
wednesday 15 may 2013
it'll give want, why not working @ end:
date date = new date(); simpledateformat format = new simpledateformat("eeeeeeeeee dd mmmm yyyy") ; system.out.println(format.format(date)); "wednesday 15 may 2013"
Comments
Post a Comment