Convert date to GMT


import java.util.Calendar;
import java.util.TimeZone;

public class Main {
  public static void main(String[] argv) {

  }
  public Calendar toGMT() {
    return toTimeZone("GMT");
}
  public Calendar toTimeZone(String tz) {
    Calendar cal = Calendar.getInstance();
    cal.setTimeZone(TimeZone.getTimeZone(tz));
    return cal;
  }
}
Home 
  Java Book 
    Runnable examples  

Date Convert:
  1. Convert Calendar to java.sql.Date
  2. Convert day of year to day of month
  3. Convert java.util.Date to java.sql.Time after calculation
  4. Convert java.util.Date to java.sql.Date after calculation
  5. Convert java.util.Date to java.sql.Date
  6. Convert Date into milliseconds
  7. Convert date to GMT
  8. Convert day of the year to date
  9. Convert milliseconds to readable string
  10. Elapsed time in hours/minutes/seconds
  11. Convert longs (time_t in UNIX terminology) to seconds