Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/02/2016, 06:44
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 3 meses
Puntos: 182
Respuesta: Parsear fechas

Buenas

El segundo formato es una fecha en formato ISO 8601: https://fr.wikipedia.org/wiki/ISO_8601

La Z al final significa que ha hora esta expresada en tiempo UTC.

Hacer la conversion es tan sencillo como esto:

Código Java:
Ver original
  1. TimeZone tz = TimeZone.getTimeZone("UTC");
  2. DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mmZ");
  3. df.setTimeZone(tz);
  4. String fechaAsISO = df.format(tufecha);

Un saludo
__________________
If to err is human, then programmers are the most human of us