I want to get hours and time from the date like as below
If I pass date into a method, the method should return hours and minutes
Please advise me on this..!!
Manohar Changed status to publish June 23, 2019
Please use below snippet and try, it will work
public String getHoursAndMinutes(Date date) { calendar.setTime(date); // assigns calendar to given date String min = ""; if (calendar.get(Calendar.MINUTE) < 10) { min = "0" + calendar.get(Calendar.MINUTE); } else { min = "" + calendar.get(Calendar.MINUTE); } String hrsAndMinutes = calendar.get(Calendar.HOUR_OF_DAY) + "" + min; return hrsAndMinutes; }
Manohar Changed status to publish June 23, 2019