Java Date Format ISO formatIso8601ForCCTray(Date date)

Here you can find the source of formatIso8601ForCCTray(Date date)

Description

format Iso For CC Tray

License

Apache License

Declaration

public static String formatIso8601ForCCTray(Date date) 

Method Source Code

//package com.java2s;
/*************************GO-LICENSE-START*********************************
 * Copyright 2014 ThoughtWorks, Inc.//from  w w w .j ava 2 s . c om
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *************************GO-LICENSE-END***********************************/

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    public static String formatIso8601ForCCTray(Date date) {
        if (date == null) {
            return null;
        }
        return new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss").format(date);
    }
}

Related

  1. formatIso8601Date(Date date)
  2. formatISO8601Date(Date date)
  3. formatISO8601Date(final Calendar date)
  4. formatISO8601Date(final java.util.Date date)
  5. formatISO8601DateWOTime(final java.util.Date date)
  6. formatIsoDate(Date date)
  7. formatISODate(Date date)
  8. formatISODateTime(Date date)
  9. formatOneDecimal(int iNumber, int iDivisor)