org.joda.time.LocalDateTime.withMillisOfSecond()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(237)

本文整理了Java中org.joda.time.LocalDateTime.withMillisOfSecond()方法的一些代码示例,展示了LocalDateTime.withMillisOfSecond()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。LocalDateTime.withMillisOfSecond()方法的具体详情如下:
包路径:org.joda.time.LocalDateTime
类名称:LocalDateTime
方法名:withMillisOfSecond

LocalDateTime.withMillisOfSecond介绍

[英]Returns a copy of this datetime with the millis of second field updated.

LocalDateTime is immutable, so there are no set methods. Instead, this method returns a new instance with the value of millis of second changed.
[中]返回此日期时间的副本,并更新毫秒字段。
LocalDateTime是不可变的,因此没有set方法。相反,此方法返回一个值为毫秒的新实例。

代码示例

代码示例来源:origin: pl.edu.icm.sedno/sedno-api

public void doTimestamp() {
  this.timestamp = new LocalDateTime().withMillisOfSecond(0);
}

代码示例来源:origin: org.motechproject/motech-platform-commons-date

public static DateTime newDateTime(LocalDate localDate, int hour, int minute, int second) {
  final DateTimeZone zone = DateTimeSourceUtil.timeZone();
  LocalDateTime localDateTime = new LocalDateTime(zone)
      .withYear(localDate.getYear())
      .withMonthOfYear(localDate.getMonthOfYear())
      .withDayOfMonth(localDate.getDayOfMonth())
      .withHourOfDay(hour)
      .withMinuteOfHour(minute)
      .withSecondOfMinute(second)
      .withMillisOfSecond(0);
  if (zone.isLocalDateTimeGap(localDateTime)) {
    localDateTime = localDateTime.withHourOfDay(hour + 1);
  }
  return localDateTime.toDateTime();
}

相关文章