Here you can find the source of toTime(String display)
Parameter | Description |
---|---|
time | the time as a String |
static public long toTime(String display)
//package com.java2s; //License from project: Open Source License import java.text.ParseException; import java.text.SimpleDateFormat; public class Main { /**/*from www. j ava 2 s . c om*/ * Convert between time as a {@link String} to milliseconds in a "static" * way (to exchange data over the wire, for instance). * * @param time * the time as a {@link String} * * @return the time in milliseconds */ static public long toTime(String display) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); try { return sdf.parse(display).getTime(); } catch (ParseException e) { return -1; } } }