Here you can find the source of getUTCTimeString4Digits(Date date)
public static String getUTCTimeString4Digits(Date date)
//package com.java2s; /**//from w ww . j av a2s . c o m * Copyright (C) 2013,2015 Wolfram Wagner * * This file is part of OpenRadar. * * OpenRadar is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * OpenRadar is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * OpenRadar. If not, see <http://www.gnu.org/licenses/>. * * Diese Datei ist Teil von OpenRadar. * * OpenRadar ist Freie Software: Sie k?nnen es unter den Bedingungen der GNU * General Public License, wie von der Free Software Foundation, Version 3 der * Lizenz oder (nach Ihrer Option) jeder sp?teren ver?ffentlichten Version, * weiterverbreiten und/oder modifizieren. * * OpenRadar wird in der Hoffnung, dass es n?tzlich sein wird, aber OHNE JEDE * GEW?HELEISTUNG, bereitgestellt; sogar ohne die implizite Gew?hrleistung der * MARKTF?HIGKEIT oder EIGNUNG F?R EINEN BESTIMMTEN ZWECK. Siehe die GNU General * Public License f?r weitere Details. * * Sie sollten eine Kopie der GNU General Public License zusammen mit diesem * Programm erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>. */ import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class Main { public static String getUTCTimeString4Digits(Date date) { SimpleDateFormat sdf = new SimpleDateFormat("HHmm"); sdf.setTimeZone(TimeZone.getTimeZone("UTC")); return sdf.format(date); } }