Java Hour Format formatCalTime(Date time)

Here you can find the source of formatCalTime(Date time)

Description

Returns a string from a date.

License

Open Source License

Parameter

Parameter Description
time the time.

Return

the formatted string (yyyy-mm-ddThh:mmZ)

Declaration

public static String formatCalTime(Date time) 

Method Source Code

//package com.java2s;
/**//from  w  w  w.  j  a v a 2s.  c  o  m
 * Copyright (C) 2011,2012 Landstinget i Joenkoepings laen <http://www.lj.se/minhalsoplan>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    static SimpleDateFormat iCalTimeFormat = new SimpleDateFormat("yyyyMMdd'T'HHmmss");

    /**
     * Returns a string from a date.
     * 
     * @param time the time.
     * @return the formatted string (yyyy-mm-ddThh:mmZ)
     */
    public static String formatCalTime(Date time) {
        return iCalTimeFormat.format(time);
    }
}

Related

  1. formatAsDateAndTime(Date date)
  2. formatAsHour(long l)
  3. formatAsRoundTripDate(Date date)
  4. formatAsXsdDateTime(Date date)
  5. formatCalendarForXpath(Calendar date)
  6. formatCapDate(Calendar cal)
  7. formatCompleteDate(Date date)
  8. formatCreationDate(String creationDate)
  9. formatCurrentDateForDebug()