I have a SimleDateFormat like this
SimleDateFormat
SimpleDateFormat format = new SimpleDateFormat(\"MMM dd,yyyy hh:mm\"); String date = format.format(Date.parse(p
Use this to parse "Jan,23,2014"
SimpleDateFormat fmt = new SimpleDateFormat("MMM','dd','yyyy"); Date dt = fmt.parse("Jan,23,2014");
then you can get whatever part of the date.