Java Date Format ISO getISOFormat(java.util.Date date)

Here you can find the source of getISOFormat(java.util.Date date)

Description

get ISO Format

License

Apache License

Declaration

public static String getISOFormat(java.util.Date date) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.text.SimpleDateFormat;

public class Main {
    public static String getISOFormat(java.util.Date date) {
        return new SimpleDateFormat("yyyy-mm-dd hh:mm:ss").format(date);
    }//from w ww . ja va  2 s  . com
}

Related

  1. getIsoDateFormater()
  2. getISODateFormatterShort()
  3. getISODateStr(Date date)
  4. getISODateStringFormat(Date ts)
  5. getIsoFormat()
  6. getISOFromMillisec(long timeMillisecGMT)
  7. getISOHttpDateFormat()
  8. getIsoTimeStamp()
  9. getIsoTimestampFormatter()