You have mixed m
and M
.
m
stands for minute and M
for month.
Below is an example of a working format.
SimpleDateFormat formatter = new SimpleDateFormat("MM/dd/yyyy");
String dateInString = "07/06/2013";
Date date = formatter.parse(dateInString);
System.out.println(formatter.format(date));