Here you can find the source of getDayTime(Timestamp day, Timestamp time)
Parameter | Description |
---|---|
day | day part |
time | time part |
static public Timestamp getDayTime(Timestamp day, Timestamp time)
//package com.java2s; /****************************************************************************** * The contents of this file are subject to the Compiere License Version 1.1 * ("License"); You may not use this file except in compliance with the License * You may obtain a copy of the License at http://www.compiere.org/license.html * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific language governing rights and limitations under the License. * The Original Code is Compiere ERP & CRM Smart Business Solution. The Initial * Developer of the Original Code is Jorg Janke. Portions created by Jorg Janke * are Copyright (C) 1999-2005 Jorg Janke. * All parts are Copyright (C) 1999-2005 ComPiere, Inc. All Rights Reserved. * Contributor(s): ______________________________________. *****************************************************************************/ import java.sql.Timestamp; import java.util.Calendar; import java.util.GregorianCalendar; public class Main { /**/*from ww w .ja va 2 s.co m*/ * Return the day and time * @param day day part * @param time time part * @return day + time */ static public Timestamp getDayTime(Timestamp day, Timestamp time) { GregorianCalendar cal_1 = new GregorianCalendar(); cal_1.setTimeInMillis(day.getTime()); GregorianCalendar cal_2 = new GregorianCalendar(); cal_2.setTimeInMillis(time.getTime()); // GregorianCalendar cal = new GregorianCalendar(); cal.set(cal_1.get(Calendar.YEAR), cal_1.get(Calendar.MONTH), cal_1.get(Calendar.DAY_OF_MONTH), cal_2.get(Calendar.HOUR_OF_DAY), cal_2.get(Calendar.MINUTE), cal_2.get(Calendar.SECOND)); cal.set(Calendar.MILLISECOND, 0); Timestamp retValue = new Timestamp(cal.getTimeInMillis()); // log.fine( "TimeUtil.getDayTime", "Day=" + day + ", Time=" + time + " => " + retValue); return retValue; } }