- 使用 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()));
}
}
我在网上搜索但没有找到任何合适的文章解释如何使用 javascript 使用 WCF 服务,尤其是 WebScriptEndpoint。 任何人都可以对此给出任何指导吗? 谢谢 最佳答案 这是一篇关于
我正在编写一个将运行 Linux 命令的 C 程序,例如: cat/etc/passwd | grep 列表 |剪切-c 1-5 我没有任何结果 *这里 parent 等待第一个 child (chi
所以我正在尝试处理文件上传,然后将该文件作为二进制文件存储到数据库中。在我存储它之后,我尝试在给定的 URL 上提供文件。我似乎找不到适合这里的方法。我需要使用数据库,因为我使用 Google 应用引
我正在尝试制作一个宏,将下面的公式添加到单元格中,然后将其拖到整个列中并在 H 列中复制相同的公式 我想在 F 和 H 列中输入公式的数据 Range("F1").formula = "=IF(ISE
问题类似于this one ,但我想使用 OperatorPrecedenceParser 解析带有函数应用程序的表达式在 FParsec . 这是我的 AST: type Expression =
我想通过使用 sequelize 和 node.js 将这个查询更改为代码取决于在哪里 select COUNT(gender) as genderCount from customers where
我正在使用GNU bash,版本5.0.3(1)-发行版(x86_64-pc-linux-gnu),我想知道为什么简单的赋值语句会出现语法错误: #/bin/bash var1=/tmp
这里,为什么我的代码在 IE 中不起作用。我的代码适用于所有浏览器。没有问题。但是当我在 IE 上运行我的项目时,它发现错误。 而且我的 jquery 类和 insertadjacentHTMl 也不
我正在尝试更改标签的innerHTML。我无权访问该表单,因此无法编辑 HTML。标签具有的唯一标识符是“for”属性。 这是输入和标签的结构:
我有一个页面,我可以在其中返回用户帖子,可以使用一些 jquery 代码对这些帖子进行即时评论,在发布新评论后,我在帖子下插入新评论以及删除 按钮。问题是 Delete 按钮在新插入的元素上不起作用,
我有一个大约有 20 列的“管道分隔”文件。我只想使用 sha1sum 散列第一列,它是一个数字,如帐号,并按原样返回其余列。 使用 awk 或 sed 执行此操作的最佳方法是什么? Accounti
我需要将以下内容插入到我的表中...我的用户表有五列 id、用户名、密码、名称、条目。 (我还没有提交任何东西到条目中,我稍后会使用 php 来做)但由于某种原因我不断收到这个错误:#1054 - U
所以我试图有一个输入字段,我可以在其中输入任何字符,但然后将输入的值小写,删除任何非字母数字字符,留下“。”而不是空格。 例如,如果我输入: 地球的 70% 是水,-!*#$^^ & 30% 土地 输
我正在尝试做一些我认为非常简单的事情,但出于某种原因我没有得到想要的结果?我是 javascript 的新手,但对 java 有经验,所以我相信我没有使用某种正确的规则。 这是一个获取输入值、检查选择
我想使用 angularjs 从 mysql 数据库加载数据。 这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上 我想获取这个值并通过 angularjs
我正在使用 autoLayout,我想在 UITableViewCell 上放置一个 UIlabel,它应该始终位于单元格的右侧和右侧的中心。 这就是我想要实现的目标 所以在这里你可以看到我正在谈论的
我需要与 MySql 等效的 elasticsearch 查询。我的 sql 查询: SELECT DISTINCT t.product_id AS id FROM tbl_sup_price t
我正在实现代码以使用 JSON。 func setup() { if let flickrURL = NSURL(string: "https://api.flickr.com/
我尝试使用for循环声明变量,然后测试cols和rols是否相同。如果是,它将运行递归函数。但是,我在 javascript 中执行 do 时遇到问题。有人可以帮忙吗? 现在,在比较 col.1 和
我举了一个我正在处理的问题的简短示例。 HTML代码: 1 2 3 CSS 代码: .BB a:hover{ color: #000; } .BB > li:after {
我是一名优秀的程序员,十分优秀!