Java Timestamp Format formatJDBCTimeStamp(final java.util.Date date)

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

Description

Obtain an JDBC timestamp string representation of the supplied date.

License

Open Source License

Parameter

Parameter Description
date the date

Return

the string in the JDBC timestamp format

Declaration

public static String formatJDBCTimeStamp(final java.util.Date date) 

Method Source Code

//package com.java2s;
/*//from  w w w  .  j  av  a2s  .c om
 * JBoss, Home of Professional Open Source.
 * Copyright 2008, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors. 
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

import java.text.SimpleDateFormat;

public class Main {
    /**
     * 
     */
    public static final String JDBC_TIMESTAMP_FORMAT = "yyyy-MM-dd HH:mm:ss.SSS";

    /**
     * Obtain an JDBC timestamp string representation of the supplied date.
     * 
     * @param date
     *            the date
     * @return the string in the JDBC timestamp format
     */
    public static String formatJDBCTimeStamp(final java.util.Date date) {
        return new SimpleDateFormat(JDBC_TIMESTAMP_FORMAT).format(date);
    }
}

Related

  1. formatDefaultDate(Timestamp time)
  2. formatDuration(final long duration)
  3. formatElapsed(long elapsed)
  4. formatFileSize(Number data)
  5. formatGMTTimestampToDate(Timestamp time)
  6. formatJDBCTimeStamp(final java.util.Date date)
  7. formatMillis(long _millis)
  8. formatShortDateTime(Timestamp time)
  9. formatStatement(PreparedStatement statement, List values)

    HOME | Copyright © www.java2s.com 2016