I am trying to format a string into specific date format but there is some problem in conversion. In converted string month is always coming \"January\". Following is the code s
Use MM instead of mm for the date portion of your format string. mm is for minutes, not months.
MM
mm
Reference: http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html