Here you can find the source of parse3339(String time)
public static Date parse3339(String time)
//package com.java2s; import android.text.format.Time; import java.util.Date; public class Main { public static Date parse3339(String time) { final Time t = new Time(); t.parse3339(time);/*from w w w. j ava 2s .c om*/ return new Date(t.toMillis(false)); } }