本文整理匯總了Java中org.joda.time.DateTimeZone.convertLocalToUTC方法的典型用法代碼示例。如果您正苦於以下問題:Java DateTimeZone.convertLocalToUTC方法的具體用法?Java DateTimeZone.convertLocalToUTC怎麽用?Java DateTimeZone.convertLocalToUTC使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.joda.time.DateTimeZone
的用法示例。
在下文中一共展示了DateTimeZone.convertLocalToUTC方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getPartition
import org.joda.time.DateTimeZone; //導入方法依賴的package包/類
public static long getPartition(long timeGranularityMs, long timestamp, DateTimeZone timeZone) {
long adjustedTimeStamp = timeZone.convertUTCToLocal(timestamp);
long partitionedTime = (adjustedTimeStamp / timeGranularityMs) * timeGranularityMs;
return timeZone.convertLocalToUTC(partitionedTime, false);
}
示例2: getPartition
import org.joda.time.DateTimeZone; //導入方法依賴的package包/類
private static long getPartition(long timeGranularityMs, long timestamp, DateTimeZone timeZone) {
long adjustedTimeStamp = timeZone.convertUTCToLocal(timestamp);
long partitionedTime = (adjustedTimeStamp / timeGranularityMs) * timeGranularityMs;
return timeZone.convertLocalToUTC(partitionedTime, false);
}
示例3: getNextTimeAdjustedByDay
import org.joda.time.DateTimeZone; //導入方法依賴的package包/類
/**
* Calculates next period of periodMs after currentTimeMs starting from midnight in given timeZone.
* If the next period is in next day then 12am of next day will be returned
* @param currentTimeMs time to calculate at
* @param periodMs period in ms
* @param timeZone timezone to get midnight time
* @return timestamp in ms
*/
public static long getNextTimeAdjustedByDay(long currentTimeMs, long periodMs, DateTimeZone timeZone) {
long startOfDay = timeZone.convertLocalToUTC(timeZone.convertUTCToLocal(currentTimeMs) / DAY_IN_MS * DAY_IN_MS, true);
long nextPeriodOffset = ((currentTimeMs - startOfDay) / periodMs + 1) * periodMs;
long offset = Math.min(nextPeriodOffset, DAY_IN_MS);
return startOfDay + offset;
}