if you have any technical question regarding : JAVA - core and advance ,java FX , mvc, spring , hibernate ,sql , jquery . You can save your serach time here . Feel free to ask Click here to ask Question .
public static Date getUtcDate(Date date) { SimpleDateFormat sdf = new SimpleDateFormat(TIMESTAMP); sdf.setTimeZone(TimeZone.getTimeZone("UTC")); Date utcDate = new Date(sdf.format(date)); return utcDate; }