- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中java.time.ZonedDateTime.with()
方法的一些代码示例,展示了ZonedDateTime.with()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZonedDateTime.with()
方法的具体详情如下:
包路径:java.time.ZonedDateTime
类名称:ZonedDateTime
方法名:with
[英]Returns an adjusted copy of this date-time.
This returns a new ZonedDateTime, based on this one, with the date-time adjusted. The adjustment takes place using the specified adjuster strategy object. Read the documentation of the adjuster to understand what adjustment will be made.
A simple adjuster might simply set the one of the fields, such as the year field. A more complex adjuster might set the date to the last day of the month. A selection of common adjustments is provided in TemporalAdjusters. These include finding the "last day of the month" and "next Wednesday". Key date-time classes also implement the TemporalAdjuster interface, such as Month and MonthDay. The adjuster is responsible for handling special cases, such as the varying lengths of month and leap years.
For example this code returns a date on the last day of July:
import static java.bp.Month.*;
import static java.bp.temporal.Adjusters.*;
result = zonedDateTime.with(JULY).with(lastDayOfMonth());
The classes LocalDate and LocalTime implement TemporalAdjuster, thus this method can be used to change the date, time or offset:
result = zonedDateTime.with(date);
result = zonedDateTime.with(time);
ZoneOffset also implements TemporalAdjuster however it is less likely that setting the offset will have the effect you expect. When an offset is passed in, the local date-time is combined with the new offset to form an Instant. The instant and original zone are then used to create the result. This algorithm means that it is quite likely that the output has a different offset to the specified offset. It will however work correctly when passing in the offset applicable for the instant of the zoned date-time, and will work correctly if passing one of the two valid offsets during a daylight savings overlap when the same local time occurs twice.
The result of this method is obtained by invoking the TemporalAdjuster#adjustInto(Temporal) method on the specified adjuster passing this as the argument.
This instance is immutable and unaffected by this method call.
[中]返回此日期时间的调整副本。
这将返回一个新的ZonedDateTime(基于此分区),并调整日期时间。使用指定的调整器策略对象进行调整。阅读调整器的文档,了解将进行的调整。
一个简单的调整器可以简单地设置其中一个字段,例如年份字段。更复杂的调整器可能会将日期设置为当月的最后一天。临时调整器中提供了一些常用调整。其中包括查找“本月最后一天”和“下周三”。关键日期时间类还实现了临时调整器接口,例如Month和MonthDay。理算师负责处理特殊情况,例如不同长度的月份和闰年。
例如,此代码返回7月最后一天的日期:
import static java.bp.Month.*;
import static java.bp.temporal.Adjusters.*;
result = zonedDateTime.with(JULY).with(lastDayOfMonth());
LocalDate和LocalTime类实现了TemporalAdjuster,因此可以使用此方法更改日期、时间或偏移量:
result = zonedDateTime.with(date);
result = zonedDateTime.with(time);
ZoneOffset还实现了TemporalAdjuster,但是设置偏移量产生预期效果的可能性较小。传入偏移量时,本地日期时间与新偏移量组合,形成一个瞬间。然后使用即时和原始区域创建结果。此算法意味着输出很可能与指定的偏移量有不同的偏移量。但是,当传递适用于分区日期时间瞬间的偏移量时,它将正常工作;如果在夏时制重叠期间传递两个有效偏移量中的一个,当相同的本地时间发生两次时,它将正常工作。
该方法的结果是通过调用指定调整器上的TemporalAdjuster#adjustInto(Temporal)方法获得的,该方法将其作为参数传递。
此实例是不可变的,不受此方法调用的影响。
代码示例来源:origin: debezium/debezium
/**
* Get the ISO 8601 formatted representation of the given {@link ZonedDateTime}.
*
* @param timestamp the timestamp value
* @param adjuster the optional component that adjusts the local date value before obtaining the epoch day; may be null if no
* adjustment is necessary
* @return the ISO 8601 formatted string
*/
public static String toIsoString(ZonedDateTime timestamp, TemporalAdjuster adjuster) {
if (adjuster != null) {
timestamp = timestamp.with(adjuster);
}
return timestamp.format(FORMATTER);
}
代码示例来源:origin: oracle/helidon
/**
* Get current (or as configured) time.
*
* @return a date time with a time-zone information as configured for this instance
*/
public ZonedDateTime get() {
ZonedDateTime zdt = ZonedDateTime.now();
zdt = zdt.withZoneSameInstant(timeZone);
zdt = zdt.plus(shiftSeconds, ChronoUnit.SECONDS);
for (ChronoValues chronoValues : this.chronoValues) {
zdt = zdt.with(chronoValues.field, chronoValues.value);
}
return zdt;
}
代码示例来源:origin: blynkkk/blynk-server
private ZonedDateTime adjustToStartDate(ZonedDateTime zonedStartAt, ZonedDateTime zonedNow, ZoneId zoneId) {
if (durationType == ReportDurationType.CUSTOM) {
ZonedDateTime zonedStartDate = getZonedFromTs(startTs, zoneId).with(LocalTime.MIN);
if (zonedStartDate.isAfter(zonedNow)) {
zonedStartAt = zonedStartAt
.withDayOfMonth(zonedStartDate.getDayOfMonth())
.withMonth(zonedStartDate.getMonthValue())
.withYear(zonedStartDate.getYear());
}
}
return zonedStartAt;
}
代码示例来源:origin: neo4j/neo4j
.with( IsoFields.WEEK_BASED_YEAR,
safeCastIntegral( TemporalFields.year.name(), fields.get( TemporalFields.year ),
TemporalFields.year.defaultValue ) )
.with( IsoFields.WEEK_OF_WEEK_BASED_YEAR, 1 )
.with( ChronoField.DAY_OF_WEEK, 1 );
代码示例来源:origin: org.elasticsearch/elasticsearch
case 'y':
if (round) {
dateTime = dateTime.withDayOfYear(1).with(LocalTime.MIN);
} else {
dateTime = dateTime.plusYears(sign * num);
case 'M':
if (round) {
dateTime = dateTime.withDayOfMonth(1).with(LocalTime.MIN);
} else {
dateTime = dateTime.plusMonths(sign * num);
case 'w':
if (round) {
dateTime = dateTime.with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY)).with(LocalTime.MIN);
} else {
dateTime = dateTime.plusWeeks(sign * num);
case 'd':
if (round) {
dateTime = dateTime.with(LocalTime.MIN);
} else {
dateTime = dateTime.plusDays(sign * num);
代码示例来源:origin: wildfly/wildfly
case WEEK:
zonedDateTime = zonedDateTime.truncatedTo(ChronoUnit.DAYS)
.with(TemporalAdjusters.next(WeekFields.of(Locale.getDefault()).getFirstDayOfWeek()));
break;
case DAY:
代码示例来源:origin: org.elasticsearch/elasticsearch
result = result.with(ChronoField.INSTANT_SECONDS, accessor.getLong(ChronoField.INSTANT_SECONDS));
if (accessor.isSupported(ChronoField.NANO_OF_SECOND)) {
result = result.with(ChronoField.NANO_OF_SECOND, accessor.getLong(ChronoField.NANO_OF_SECOND));
result = result.with(ChronoField.YEAR, accessor.getLong(ChronoField.YEAR));
} else if (accessor.isSupported(ChronoField.YEAR_OF_ERA)) {
result = result.with(ChronoField.YEAR_OF_ERA, accessor.getLong(ChronoField.YEAR_OF_ERA));
} else if (accessor.isSupported(WeekFields.ISO.weekBasedYear())) {
if (accessor.isSupported(WeekFields.ISO.weekOfWeekBasedYear())) {
result = result.with(IsoFields.WEEK_BASED_YEAR, accessor.getLong(IsoFields.WEEK_BASED_YEAR));
if (accessor.isSupported(IsoFields.WEEK_OF_WEEK_BASED_YEAR)) {
result = result.with(IsoFields.WEEK_OF_WEEK_BASED_YEAR, accessor.getLong(IsoFields.WEEK_OF_WEEK_BASED_YEAR));
result = result.with(ChronoField.MONTH_OF_YEAR, accessor.getLong(ChronoField.MONTH_OF_YEAR));
result = result.with(ChronoField.DAY_OF_MONTH, accessor.getLong(ChronoField.DAY_OF_MONTH));
result = result.with(ChronoField.HOUR_OF_DAY, accessor.getLong(ChronoField.HOUR_OF_DAY));
result = result.with(ChronoField.MINUTE_OF_HOUR, accessor.getLong(ChronoField.MINUTE_OF_HOUR));
result = result.with(ChronoField.SECOND_OF_MINUTE, accessor.getLong(ChronoField.SECOND_OF_MINUTE));
result = result.with(ChronoField.MILLI_OF_SECOND, accessor.getLong(ChronoField.MILLI_OF_SECOND));
result = result.with(ChronoField.NANO_OF_SECOND, accessor.getLong(ChronoField.NANO_OF_SECOND));
代码示例来源:origin: com.cronutils/cron-utils
private ExecutionTimeResult getNextPotentialDayOfMonth(final ZonedDateTime date,
final int lowestHour,
final int lowestMinute,
final int lowestSecond,
final TimeNode node) {
final NearestValue nearestValue = node.getNextValue(date.getDayOfMonth(), 0);
if (nearestValue.getShifts() > 0) {
return new ExecutionTimeResult(date.truncatedTo(DAYS).withDayOfMonth(1).plusMonths(nearestValue.getShifts()), false);
}
return new ExecutionTimeResult(date.truncatedTo(SECONDS).withDayOfMonth(nearestValue.getValue())
.with(LocalTime.of(lowestHour, lowestMinute, lowestSecond)), false);
}
代码示例来源:origin: debezium/debezium
/**
* Get the ISO 8601 formatted representation of the given {@link java.sql.Timestamp}, which contains a date and time but
* has no timezone information.
*
* @param timestamp the JDBC timestamp value; may not be null
* @param zoneId the timezone identifier or offset where the timestamp is defined
* @param adjuster the optional component that adjusts the local date value before obtaining the epoch day; may be null if no
* adjustment is necessary
* @return the ISO 8601 formatted string
*/
public static String toIsoString(java.sql.Timestamp timestamp, ZoneId zoneId, TemporalAdjuster adjuster) {
ZonedDateTime zdt = timestamp.toInstant().atZone(zoneId);
if (adjuster != null) {
zdt = zdt.with(adjuster);
}
return zdt.format(FORMATTER);
}
代码示例来源:origin: blynkkk/blynk-server
public boolean isExpired(ZonedDateTime zonedNow, ZoneId zoneId) {
if (durationType == ReportDurationType.CUSTOM) {
ZonedDateTime zonedEndDate = getZonedFromTs(endTs, zoneId).with(LocalTime.MAX);
return zonedEndDate.isBefore(zonedNow);
}
return false;
}
代码示例来源:origin: blynkkk/blynk-server
@Override
public ZonedDateTime getNextTriggerTime(ZonedDateTime zonedNow, ZoneId zoneId) {
ZonedDateTime zonedStartAt = buildZonedStartAt(zonedNow, zoneId);
DayOfWeek dayOfWeek = DayOfWeek.of(dayOfTheWeek);
zonedStartAt = zonedStartAt.with(TemporalAdjusters.nextOrSame(dayOfWeek));
return zonedStartAt.isAfter(zonedNow)
? zonedStartAt
: zonedStartAt.with(TemporalAdjusters.next(dayOfWeek));
}
}
代码示例来源:origin: blynkkk/blynk-server
@Override
public ZonedDateTime getNextTriggerTime(ZonedDateTime zonedNow, ZoneId zoneId) {
ZonedDateTime zonedStartAt = buildZonedStartAt(zonedNow, zoneId);
switch (dayOfMonth) {
case LAST:
zonedStartAt = zonedStartAt.with(TemporalAdjusters.lastDayOfMonth());
return zonedStartAt.isAfter(zonedNow)
? zonedStartAt
: zonedStartAt.plusDays(1).with(TemporalAdjusters.lastDayOfMonth());
case FIRST:
default:
zonedStartAt = zonedStartAt.with(TemporalAdjusters.firstDayOfMonth());
return zonedStartAt.isAfter(zonedNow)
? zonedStartAt
: zonedStartAt.with(TemporalAdjusters.firstDayOfNextMonth());
}
}
}
代码示例来源:origin: org.elasticsearch/elasticsearch
public ZonedDateTime with(TemporalAdjuster adjuster) {
return dt.with(adjuster);
}
代码示例来源:origin: org.elasticsearch/elasticsearch
public ZonedDateTime with(TemporalField field, long newValue) {
return dt.with(field, newValue);
}
代码示例来源:origin: eclipse/smarthome
private <T> void schedule(ScheduledCompletableFutureRecurring<T> schedule, SchedulerRunnable runnable,
SchedulerTemporalAdjuster temporalAdjuster) {
final Temporal newTime = ZonedDateTime.now(clock).with(temporalAdjuster);
final ScheduledCompletableFutureOnce<T> deferred = new ScheduledCompletableFutureOnce<>();
deferred.thenAccept(v -> {
if (temporalAdjuster.isDone(newTime)) {
schedule.complete(v);
} else {
schedule(schedule, runnable, temporalAdjuster);
}
});
schedule.setScheduledPromise(deferred);
atInternal(deferred, () -> {
runnable.run();
return null;
}, Instant.from(newTime));
}
代码示例来源:origin: org.osgi/osgi.enroute.scheduler.simple.provider
@Override
long next() {
ZonedDateTime now = ZonedDateTime.now(clock);
ZonedDateTime next = now.with(cron);
return next.toInstant().toEpochMilli();
}
代码示例来源:origin: stackoverflow.com
Instant instant = Instant.parse("2016-03-23T17:14:00.092812Z");
LocalTime newTime = LocalTime.parse("12:34:45.567891");
ZonedDateTime dt = instant.atZone(ZoneOffset.UTC);
dt = dt.with(newTime);
instant = dt.toInstant();
System.out.println("instant = " + instant);
// prints 2016-03-23T12:34:45.567891Z
代码示例来源:origin: espertechinc/esper
public ZonedDateTime evaluate(ZonedDateTime zdt, EventBean[] eventsPerStream, boolean isNewData, ExprEvaluatorContext context) {
Integer value = CalendarOpUtil.getInt(valueExpr, eventsPerStream, isNewData, context);
if (value == null) {
return zdt;
}
return zdt.with(fieldName.getChronoField(), value);
}
代码示例来源:origin: com.cronutils/cron-utils
private ZonedDateTime toEndOfPreviousMonth(final ZonedDateTime datetime) {
final ZonedDateTime previousMonth = datetime.minusMonths(1).with(lastDayOfMonth());
final int highestHour = hours.getValues().get(hours.getValues().size() - 1);
final int highestMinute = minutes.getValues().get(minutes.getValues().size() - 1);
final int highestSecond = seconds.getValues().get(seconds.getValues().size() - 1);
return ZonedDateTime
.of(previousMonth.getYear(), previousMonth.getMonth().getValue(), previousMonth.getDayOfMonth(), highestHour, highestMinute, highestSecond, 0,
previousMonth.getZone());
}
代码示例来源:origin: org.hawkular.metrics/hawkular-metrics-core-service
@Override
public Completable call(JobDetails jobDetails) {
Trigger trigger = jobDetails.getTrigger();
ZonedDateTime currentBlock = ZonedDateTime.ofInstant(Instant.ofEpochMilli(trigger.getTriggerTime()), UTC)
.with(DateTimeService.startOfPreviousEvenHour());
ZonedDateTime lastMaintainedBlock = currentBlock.plus(forwardTime);
return service.verifyAndCreateTempTables(currentBlock, lastMaintainedBlock)
.doOnCompleted(() -> logger.debugf("Temporary tables are valid until %s",
lastMaintainedBlock.toString()));
}
}
在尝试 time 的 python 执行时,我发现在一条语句中两次调用 time.time() 时出现奇怪的行为。在语句执行期间获取time.time() 有一个非常小的处理延迟。 例如time.ti
我要疯了。对于我的生活,我无法弄清楚为什么以下代码会导致 Unity 在我按下播放键后立即卡住。这是一个空的项目,脚本附加到一个空的游戏对象。在控制台中,什么也没有出现,甚至没有出现初始的 Debug
我要疯了。对于我的生活,我无法弄清楚为什么以下代码会导致 Unity 在我按下播放键后立即卡住。这是一个空的项目,脚本附加到一个空的游戏对象。在控制台中,什么也没有出现,甚至没有出现初始的 Debug
我不明白为什么下面的结果是一样的。我预计第一个结果是指针地址。 func print(t *time.Time) { fmt.Println(t) // 2009-11-10 23:00:00
Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:54:40) [MSC v.1900 64 bit (AMD64)] on win32 Type "help
当我有一个time.Time时: // January, 29th t, _ := time.Parse("2006-01-02", "2016-01-29") 如何获得代表 1 月 31 日的 ti
首先,我意识到不推荐使用 time with time zone。我要使用它是因为我将多个 time with time zone 值与我当前的系统时间进行比较,而不管是哪一天。 IE。用户说每天 0
长期以来,在 Rust 中精确测量时间的标准方法是 time crate 及其 time::precise_time_ns功能。但是,time crate 现在已被弃用,std 库有 std::tim
我正在我学校的一个科学集群上运行我的有限差分程序。该程序使用 openmpi 来并行化代码。 当程序连续运行时,我得到: real 78m40.592s user 78m34.920s s
尽管它们已被弃用并且有比 time 更好的模块(即 timeit),但我想知道这两个函数 time 之间的区别.clock() 和 time.time()。 从后者 (time.time()) 开始,
这个问题在这里已经有了答案: Python's time.clock() vs. time.time() accuracy? (16 个答案) 关闭 6 年前。 我认为两者都衡量时间量?但是他们返回
我正在尝试测试 http 请求处理代码块在我的 Flask Controller 中需要多长时间,这是我使用的示例代码: cancelled = [] t0 = time.time() t1 = ti
运行 python 的计算机时钟(Windows 或 Linux)时会发生什么自动更改并调用 time.time()? 我读到,当时钟手动更改为过去的某个值时,time.time() 的值会变小。 最
我有一个结构可能无法在其字段之一上设置 time.Time 值。测试无效性时,我不能使用 nil 或 0。time.Unix(0,0) 也不相同。我想到了这个: var emptyTime time.
我有一个打算用数据库记录填充的结构,其中一个日期时间列可以为空: type Reminder struct { Id int CreatedAt time.Time
问题陈述:通过匹配其百分比随机执行各种命令。比如执行 CommandA 50% 的时间和 commandB 25% 的时间和 commandC 15% 的时间等等,总百分比应该是 100%。 我的问题
我正在使用 laravel 6。我在同一个应用程序中有类似的 Controller 和类似的 View ,它工作正常。对比之后还是找不到错误。 Facade\Ignition\Exceptions\V
我需要用 ("%m/%d/%Y %H:%M:%S") 格式表示时间,我得到的浮点值是 time.time(). 我已经有了一个 time.time() 形式的值。例如,我已经有一个值,我每 0.3 秒
我正在使用以下方法获取 utc 日期时间: import datetime import time from pytz import timezone now_utc = datetime.datet
我在 Ubuntu 上使用 time.clock 和 time.time 为一段 python 代码计时: clock elapsed time: 8.770 s time elapsed time
我是一名优秀的程序员,十分优秀!