martes, 29 de mayo de 2012

Transformar un string a Date

private static void fechaTrasformar(){
            SimpleDateFormat formatoDelTexto = new SimpleDateFormat("dd/MM/yyyy HH:mm");
            String strFecha="12/04/2012 13:30";
        Date fecha = null;
        try {

            fecha = formatoDelTexto.parse(strFecha);

        } catch (ParseException ex) {

            ex.printStackTrace();

        }

No hay comentarios:

Publicar un comentario