- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中java.time.ZonedDateTime.getHour()
方法的一些代码示例,展示了ZonedDateTime.getHour()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZonedDateTime.getHour()
方法的具体详情如下:
包路径:java.time.ZonedDateTime
类名称:ZonedDateTime
方法名:getHour
[英]Gets the hour-of-day field.
[中]获取一天中的小时字段。
代码示例来源:origin: org.assertj/assertj-core
/**
* Returns true if both datetime are in the same year, month, day of month and hour, false otherwise.
*
* @param actual the actual datetime. expected not be null
* @param other the other datetime. expected not be null
* @return true if both datetime are in the same year, month, day of month and hour, false otherwise.
*/
private static boolean areEqualIgnoringMinutes(ZonedDateTime actual, ZonedDateTime other) {
return haveSameYearMonthAndDayOfMonth(actual, other) && actual.getHour() == other.getHour();
}
代码示例来源:origin: joel-costigliola/assertj-core
/**
* Returns true if both datetime are in the same year, month, day of month and hour, false otherwise.
*
* @param actual the actual datetime. expected not be null
* @param other the other datetime. expected not be null
* @return true if both datetime are in the same year, month, day of month and hour, false otherwise.
*/
private static boolean areEqualIgnoringMinutes(ZonedDateTime actual, ZonedDateTime other) {
return haveSameYearMonthAndDayOfMonth(actual, other) && actual.getHour() == other.getHour();
}
代码示例来源:origin: blynkkk/blynk-server
ZonedDateTime buildZonedStartAt(ZonedDateTime zonedNow, ZoneId zoneId) {
ZonedDateTime zonedStartAt = getZonedFromTs(atTime, zoneId);
zonedStartAt = zonedNow
.withHour(zonedStartAt.getHour())
.withMinute(zonedStartAt.getMinute())
.withSecond(zonedStartAt.getSecond());
return adjustToStartDate(zonedStartAt, zonedNow, zoneId);
}
代码示例来源:origin: org.elasticsearch/elasticsearch
public int getHour() {
return dt.getHour();
}
代码示例来源:origin: debezium/debezium
private void assertTimestamp(String c4) {
// '2014-09-08 17:51:04.777'
// MySQL container is in UTC and the test time is during summer time period
ZonedDateTime expectedTimestamp = ZonedDateTime.ofInstant(
LocalDateTime.parse("2014-09-08T17:51:04.780").atZone(ZoneId.of("US/Samoa")).toInstant(),
ZoneId.systemDefault());
ZoneId defaultZoneId = ZoneId.systemDefault();
ZonedDateTime c4DateTime = ZonedDateTime.parse(c4, ZonedTimestamp.FORMATTER).withZoneSameInstant(defaultZoneId);
assertThat(c4DateTime.getYear()).isEqualTo(expectedTimestamp.getYear());
assertThat(c4DateTime.getMonth()).isEqualTo(expectedTimestamp.getMonth());
assertThat(c4DateTime.getDayOfMonth()).isEqualTo(expectedTimestamp.getDayOfMonth());
assertThat(c4DateTime.getHour()).isEqualTo(expectedTimestamp.getHour());
assertThat(c4DateTime.getMinute()).isEqualTo(expectedTimestamp.getMinute());
assertThat(c4DateTime.getSecond()).isEqualTo(expectedTimestamp.getSecond());
assertThat(c4DateTime.getNano()).isEqualTo(expectedTimestamp.getNano());
// We're running the connector in the same timezone as the server, so the timezone in the timestamp
// should match our current offset ...
LocalDateTime expectedLocalDateTime = LocalDateTime.parse("2014-09-08T17:51:04.780");
ZoneOffset expectedOffset = defaultZoneId.getRules().getOffset(expectedLocalDateTime);
assertThat(c4DateTime.getOffset()).isEqualTo(expectedOffset);
}
代码示例来源:origin: org.elasticsearch/elasticsearch
@Deprecated
public int getHourOfDay() {
logDeprecatedMethod("getHourOfDay()", "getHour()");
return dt.getHour();
}
代码示例来源:origin: mulesoft/mule
private void assertTimeZoneHour(ZonedDateTime openingDate) {
assertEquals(openingDate.getHour(), 15);
}
代码示例来源:origin: mulesoft/mule
private void assertTimeZoneWithoutSeconds(ZonedDateTime openingDate) {
assertEquals(openingDate.getHour(), HOUR);
assertEquals(openingDate.getMinute(), MINUTE);
}
代码示例来源:origin: mulesoft/mule
private void assertTimeZoneDateTime(ZonedDateTime openingDate) {
assertEquals(openingDate.getHour(), HOUR);
assertEquals(openingDate.getMinute(), MINUTE);
assertEquals(openingDate.getSecond(), SECOND);
}
代码示例来源:origin: stackoverflow.com
Date date = new Date();
// Convert to java 8 ZonedDateTime
Date date = new Date();
final ZonedDateTime dateTime = date.toInstant()
.atZone(ZoneId.systemDefault());
// Get the hour
int hour = dateTime.getHour();
代码示例来源:origin: org.assertj/assertj-core-java8
/**
* Returns true if both datetime are in the same year, month, day of month and hour, false otherwise.
*
* @param actual the actual datetime. expected not be null
* @param other the other datetime. expected not be null
* @return true if both datetime are in the same year, month, day of month and hour, false otherwise.
*/
private static boolean areEqualIgnoringMinutes(ZonedDateTime actual, ZonedDateTime other) {
return haveSameYearMonthAndDayOfMonth(actual, other) && actual.getHour() == other.getHour();
}
代码示例来源:origin: apache/tinkerpop
@Override
public <O extends OutputShim> void write(final KryoShim<?, O> kryo, final O output, final ZonedDateTime zonedDateTime) {
output.writeInt(zonedDateTime.getYear());
output.writeInt(zonedDateTime.getMonthValue());
output.writeInt(zonedDateTime.getDayOfMonth());
output.writeInt(zonedDateTime.getHour());
output.writeInt(zonedDateTime.getMinute());
output.writeInt(zonedDateTime.getSecond());
output.writeInt(zonedDateTime.getNano());
output.writeString(zonedDateTime.getZone().getId());
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch
@Deprecated
public int getHourOfDay() {
logDeprecatedMethod("getHourOfDay()", "getHour()");
return dt.getHour();
}
代码示例来源:origin: apache/james-project
@Test
void hourOfDayShouldBeParsed() {
ZonedDateTime dateTime = ZonedDateTime.parse("3 Jun 2017 04:35:11 -0700", ImapDateTimeFormatter.rfc5322());
assertThat(dateTime.getHour()).isEqualTo(4);
}
代码示例来源:origin: apache/james-project
@Test
void parseShouldNotThrowWhenHourOfDayIsLesserThanTwoDigits() {
ZonedDateTime dateTime = ZonedDateTime.parse("3 Jun 2017 4:35:11 -0700", ImapDateTimeFormatter.rfc5322());
assertThat(dateTime.getHour()).isEqualTo(4);
}
代码示例来源:origin: org.apache.james/james-server-util-java8
@Test
public void parseShouldNotThrowWhenHourOfDayIsLesserThanTwoDigits() {
ZonedDateTime dateTime = ZonedDateTime.parse("3 Jun 2017 4:35:11 -0700", ImapDateTimeFormatter.rfc5322());
assertThat(dateTime.getHour()).isEqualTo(4);
}
代码示例来源:origin: org.tiogasolutions.dev/tioga-dev-common
public ZonedDateTime toLastDate(ZonedDateTime date) {
YearMonth yearMonth = toYearMonth(date);
int lastDayOfMonth = yearMonth.lengthOfMonth();
return (date == null) ? null : ZonedDateTime.of(date.getYear(), date.getMonthValue(), lastDayOfMonth,
date.getHour(), date.getMinute(), date.getSecond(), date.getNano(), date.getZone());
}
代码示例来源:origin: no.ssb.lds/linked-data-store-persistence-provider-foundationdb
static Tuple toTuple(ZonedDateTime timestamp) {
return Tuple.from(
-timestamp.getYear(),
-timestamp.getMonth().getValue(),
-timestamp.getDayOfMonth(),
-timestamp.getHour(),
-timestamp.getMinute(),
-timestamp.getSecond(),
-TimeUnit.NANOSECONDS.toMillis(timestamp.getNano())
);
}
代码示例来源:origin: dlemmermann/CalendarFX
static DateValue zonedDateTimeToDateValue(ZonedDateTime dt) {
return new DateTimeValueImpl(
dt.getYear(), dt.getMonthValue(), dt.getDayOfMonth(),
dt.getHour(), dt.getMinute(), dt.getSecond());
}
代码示例来源:origin: org.apache.tinkerpop/gremlin-core
@Override
public <O extends OutputShim> void write(final KryoShim<?, O> kryo, final O output, final ZonedDateTime zonedDateTime) {
output.writeInt(zonedDateTime.getYear());
output.writeInt(zonedDateTime.getMonthValue());
output.writeInt(zonedDateTime.getDayOfMonth());
output.writeInt(zonedDateTime.getHour());
output.writeInt(zonedDateTime.getMinute());
output.writeInt(zonedDateTime.getSecond());
output.writeInt(zonedDateTime.getNano());
output.writeString(zonedDateTime.getZone().getId());
}
我只是对这三种方法中应该使用什么来获取设备的当前小时感到困惑,我发现已弃用的 Time().getHours() 可以在我正在测试的几乎所有设备上运行但新日历和 LocalDate 时间有一些 API
我使用以下 JavaScript 根据网站访问者访问的时间向他们动态显示消息。 var myDate = new Date(); /* hour is before noon */ if ( myDa
在比较仅以秒为单位分隔的两个日期时,为什么我从 .getHours() 得到的不是零,而是“18”? 这是代码: starting...
我只是在闲逛,而且我对 JavaScript 还比较陌生。我写了这段代码: var today = new Date(); var str =''; str = today.
JS:提取小时数与插入 相同标签。 我正在尝试从输入字段解析时间,我认为我可以使用 document.getElementbyId('arrive').valueAsDate.getHours()仅
我正在尝试使用 json 格式的一些财务数据构建一个简单的条形图。 当我尝试使用我解析的时间时,出现了这个奇怪的错误弹出窗口。当我控制日志时,它显示要解析的数据正常 - 它不返回 null 或任何东西
我正在使用 JavaScript Date 对象将毫秒转换为可读的 minutes:seconds 格式字符串。我需要它来为自定义视频播放器创建一个计时器,其中我的 JS 接口(interface)接
如果 Java 中不推荐使用某个方法,那么会有另一种更好的方法来实现相同的功能,对吧? Date date = new Date(); date.getHours() 由于 getHours() 已弃
为什么“09:50”的 getHours() 返回 8?代码: SimpleDateFormat sdf = new SimpleDateFormat("HH:mm"); Date date = sd
我正在将 PHP 时间戳转换为 javascript 中人类可读的形式: var timeleft = new Date( * 1000 ); var hours = timele
本文整理了Java中java.time.ZonedDateTime.getHour()方法的一些代码示例,展示了ZonedDateTime.getHour()的具体用法。这些代码示例主要来源于Gith
我是 Youtrack 工作流程的新手。我正在尝试创建一个新的工作流程,我需要当前日期时间的几个小时。 我正在使用 new Date().getHours() 但它没有返回正确的值。举例来说,我当前的
我一直收到这个错误: TypeError: date.getHours is not a function 尝试使用 .getHours 时,我不确定为什么。这是我正在使用的代码: import Re
我找不到确认 Date.getHours() 确实包括本地夏令时的文档(本地 = 根据用户电脑或设备)。 我的测试似乎表明确实如此。有人可以证实这一点吗? 最佳答案 是的。来自Mozilla网站: g
function show_elapsed_time(from) { var time_elapsed = new Date().getTime()-from; var date =
this.D = new Date(1433760825 * 1000); this.NewD = this.D.getHours(); D = "2015-06-08T10:53:45.000Z
我有这些代码并且可以很好地显示 timePicker 的时间。代码使用 getCurrentHour 和 getCurrentMinute。 public void setTime(View view
据我所知,getHours()、getMinutes() 和 getSeconds() 在 Java 中都已弃用,它们被替换为 Calendar.HOUR_OF_DAY、Calendar.MINUTE
我想在网页上显示时间,例如“10:45”,并让它保持准确的时间/自动更新。如果我想在本地时区执行此操作,我创建一个新的 Date() 对象并使用 getUTCHours() 和 getHours(),
我正在使用适当命名的壁纸引擎构建交互式“网络壁纸”。这是一个自二月初以来一直在进行的项目——虽然我对此完全陌生,但我已经完成了很多工作!感谢这个网站解答的问题、W3Schools 和无数的 YouTu
我是一名优秀的程序员,十分优秀!