Here you can find the source of getUtcDate(final int year, final int month, final int day)
Parameter | Description |
---|---|
year | the value used to set the YEAR calendar field. |
month | the month. Month value is 0-based. e.g., 0 for January. |
day | the value used to set the DAY_OF_MONTH calendar field. |
public static Date getUtcDate(final int year, final int month, final int day)
//package com.java2s; /**/* www. ja v a 2 s. co m*/ * DSS - Digital Signature Services * Copyright (C) 2015 European Commission, provided under the CEF programme * * This file is part of the "DSS - Digital Signature Services" project. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ import java.util.Calendar; import java.util.Date; import java.util.TimeZone; public class Main { /** * This method returns an UTC date base on the year, the month and the day. The year must be encoded as 1978... and * not 78 * * @param year * the value used to set the YEAR calendar field. * @param month * the month. Month value is 0-based. e.g., 0 for January. * @param day * the value used to set the DAY_OF_MONTH calendar field. * @return the UTC date base on parameters */ public static Date getUtcDate(final int year, final int month, final int day) { final Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("UTC")); calendar.set(year, month, day, 0, 0, 0); final Date date = calendar.getTime(); return date; } }