Here you can find the source of dateToISODate(Date date)
public static String dateToISODate(Date date)
//package com.java2s; /**/*www .j av a2 s. co m*/ * 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.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class Main { public static String dateToISODate(Date date) { TimeZone tz = TimeZone.getTimeZone("UTC"); SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ss.S'Z'"); dateFormat.setTimeZone(tz); return dateFormat.format(date); } }