List of utility methods to do Milliseconds to Month Convert
int | getMonth(long dateTimeMillis) get Month SimpleDateFormat format = new SimpleDateFormat("MM"); StringBuilder dateString = new StringBuilder( format.format(dateTimeMillis)); return Integer.parseInt(dateString.toString()) - 1; |