Here you can find the source of dateFromISODate(String isoDate)
public static Date dateFromISODate(String isoDate)
//package com.java2s; /**/*from w ww . j av a2 s. c om*/ * Copyright (c) 2010-2016, openHAB.org and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class Main { public static Date dateFromISODate(String isoDate) { TimeZone tz = TimeZone.getTimeZone("UTC"); SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ss.S'Z'"); dateFormat.setTimeZone(tz); try { return dateFormat.parse(isoDate); } catch (ParseException e) { return null; } } }