Here you can find the source of format(Date date, String format)
Parameter | Description |
---|---|
date | Fecha que se va a formatear |
format | Formato a utilizar |
public static String format(Date date, String format)
//package com.java2s; /**//from w w w . j a v a 2 s . co m * Copyright (c) 2014 Sa?l Pi?a <sauljabin@gmail.com>. * * This file is part of GeneticAlgorithm. * * GeneticAlgorithm is licensed under The MIT License. * For full copyright and license information please see the LICENSE file. */ import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { private static SimpleDateFormat sdf; public static final String FORMATO_FECHA_GUION = "dd-MM-yyyy"; /** * Esta funcion formatea una fecha * * @param date * Fecha que se va a formatear * @param format * Formato a utilizar * @return Fecha como String con el formato establecido */ public static String format(Date date, String format) { if (format == null) format = FORMATO_FECHA_GUION; sdf = new SimpleDateFormat(format, new Locale("es")); return sdf.format(date); } }