Here you can find the source of timeToDate(String time)
Parameter | Description |
---|
public static Date timeToDate(String time)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { /**/*w w w . j a v a2 s .c om*/ * * @param time: LA hora en formato HH:mm o HH:mm:ss * @return Retorna un dato de tipo Date */ public static Date timeToDate(String time) { Date fecha = null; try { SimpleDateFormat sdf; if (time.length() == 5) { sdf = new SimpleDateFormat("HH:mm"); } else if (time.length() == 8) { sdf = new SimpleDateFormat("HH:mm:ss"); } else { throw new RuntimeException("Formato de tiempo incorrecto."); } fecha = sdf.parse(time); } catch (Exception e) { } return fecha; } }