Java SQL Date Create convertirSQLDate2String(java.sql.Date sqlDate)

Here you can find the source of convertirSQLDate2String(java.sql.Date sqlDate)

Description

convertir SQL Date String

License

Apache License

Declaration

public static final String convertirSQLDate2String(java.sql.Date sqlDate) 

Method Source Code

//package com.java2s;
/*//  ww  w.  ja v a2 s.co m
 * Copyright 2017 Jos? A. Pacheco Ondo?o - joanpaon@gmail.com.
 *
 * 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.
 */

import java.text.SimpleDateFormat;

public class Main {
    public static final String convertirSQLDate2String(java.sql.Date sqlDate) {
        // Obtiene milisegundos de fecha
        long ms = sqlDate.getTime();

        // Genera un objeto java.util.Date
        java.util.Date utilDate = new java.util.Date(ms);

        // Define un formateador de fecha
        SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");

        // Formatea la fecha
        return sdf.format(utilDate);
    }
}

Related

  1. convertDateIfNecessary(Date date)
  2. convertDateToString(java.sql.Date argDate)
  3. convertFormat(java.sql.Date dt, String formatter)
  4. convertFormat(String dateData)
  5. convertiFecha(Date utilFecha)
  6. convertJavaDate2SqlDate(java.util.Date date)
  7. converToDate(String yyyy, String mm, String dd)
  8. convertSqlDate(java.util.Date date)
  9. convertSqlDate2Calendar(java.sql.Date date)