本文整理汇总了Java中org.joda.time.Duration.getStandardSeconds方法的典型用法代码示例。如果您正苦于以下问题:Java Duration.getStandardSeconds方法的具体用法?Java Duration.getStandardSeconds怎么用?Java Duration.getStandardSeconds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.joda.time.Duration
的用法示例。
在下文中一共展示了Duration.getStandardSeconds方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: lengthBetween
import org.joda.time.Duration; //导入方法依赖的package包/类
/**
* 获得两个时间点之间的时间跨度
*
* @param time1
* 开始的时间点
* @param time2
* 结束的时间点
* @param timeUnit
* 跨度的时间单位 see {@link JodaTime}
* (支持的时间单位有DAY,HOUR,MINUTE,SECOND,MILLI)
*/
public static long lengthBetween(DateTime time1, DateTime time2,
DurationFieldType timeUnit) {
Duration duration = Days.daysBetween(time1, time2).toStandardDuration();
if (timeUnit == JodaTime.DAY) {
return duration.getStandardDays();
} else if (timeUnit == JodaTime.HOUR) {
return duration.getStandardHours();
} else if (timeUnit == JodaTime.MINUTE) {
return duration.getStandardMinutes();
} else if (timeUnit == JodaTime.SECOND) {
return duration.getStandardSeconds();
} else if (timeUnit == JodaTime.MILLI) {
return duration.getMillis();
} else {
throw new RuntimeException(
"TimeUnit not supported except DAY,HOUR,MINUTE,SECOND,MILLI");
}
}
示例2: timeQuantity
import org.joda.time.Duration; //导入方法依赖的package包/类
/**
* Format a duration (Quantity of time) to human readable string
*
* @param duration The period to format
* @param targetUnit The target unit
* @return A string formatted as [amount] [i18n scalar descriptor]
*/
public String timeQuantity(Duration duration, TimeUnit targetUnit) {
switch (targetUnit) {
case DAYS:
long days = duration.getStandardDays();
return days + " " + i18n.getIfElse(MathUtils.isPlural(days), TIMEUNIT_DAYS, TIMEUNIT_DAY);
case HOURS:
long hours = duration.getStandardHours();
return hours + " " + i18n.getIfElse(MathUtils.isPlural(hours), TIMEUNIT_HOURS, TIMEUNIT_HOUR);
case MINUTES:
long minutes = duration.getStandardMinutes();
return minutes + " " + i18n.getIfElse(MathUtils.isPlural(minutes), TIMEUNIT_MINUTES, TIMEUNIT_MINUTE);
case SECONDS:
long seconds = duration.getStandardSeconds();
return seconds + " " + i18n.getIfElse(MathUtils.isPlural(seconds), TIMEUNIT_SECONDS, TIMEUNIT_SECOND);
default:
throw new UnsupportedOperationException("Quantifying " + targetUnit.toString() + " is not supported");
}
}
示例3: digitalClockQuantity
import org.joda.time.Duration; //导入方法依赖的package包/类
/**
* Format a duration in milliseconds to a digital clock string
*
* @param millis The amount of millis
* @return A string: [hours:]minutes:seconds
*/
public String digitalClockQuantity(long millis) {
Duration duration = new Duration(millis);
Function<Long, String> pad = l -> StringUtils.leftPad(String.valueOf(l), 2, "0");
long hours = duration.getStandardHours();
long minutes = duration.getStandardMinutes() - (hours * 60);
long seconds = duration.getStandardSeconds() - (minutes * 60 + hours * 3600);
if (hours > 0) {
return pad.apply(hours) + ':' + pad.apply(minutes) + ':' + pad.apply(seconds);
}
return pad.apply(minutes) + ':' + pad.apply(seconds);
}