Posts Tagged ‘mm yy’

Manejar Fechas en JAVA

enero 25, 2012

Este es un ejemplo de como podemos manipular las fechas para obtener el formato que queramos :

/*

* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package prueba;

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

/**
*
* @author ahmateu
*/
public class Fecha {

public static void main(String[] args) throws ParseException {
//larga
Date date1 = new SimpleDateFormat(«MM/dd/yy»).parse(«05/18/05»);
System.out.println(date1);

//forma corta
DateFormat df = new SimpleDateFormat(«dd/MM/yy»);
(more…)