- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.anwiba.commons.utilities.time.ZonedDateTimeUtilities.getSystemZone()
方法的一些代码示例,展示了ZonedDateTimeUtilities.getSystemZone()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZonedDateTimeUtilities.getSystemZone()
方法的具体详情如下:
包路径:net.anwiba.commons.utilities.time.ZonedDateTimeUtilities
类名称:ZonedDateTimeUtilities
方法名:getSystemZone
暂无
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static ZonedDateTime asZoneDateTime(final LocalDateTime localSystemDateTime) {
return localSystemDateTime.atZone(ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static ZonedDateTime asZoneDateTime(final LocalDateTime localSystemDateTime) {
return localSystemDateTime.atZone(ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static ZonedDateTime atSystemTimeZone(final ZonedDateTime zonedDateTime) {
return zonedDateTime.toInstant().atZone(getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static LocalDateTime atSystemZone(final Date date) {
return LocalDateTime.ofInstant(date.toInstant(), ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static LocalDateTime atSystemZone(final Date date) {
return LocalDateTime.ofInstant(date.toInstant(), ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static ZonedDateTime atSystemTimeZone(final ZonedDateTime zonedDateTime) {
return zonedDateTime.toInstant().atZone(getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static LocalDateTime atSystemZone(final ZonedDateTime dateTime) {
return LocalDateTimeUtilities.atZone(dateTime, ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static LocalDateTime atSystemZone(final LocalDateTime localSystemDateTime, final ZoneId sourceZone) {
return LocalDateTimeUtilities.atZone(localSystemDateTime, sourceZone, ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static LocalDateTime atSystemZone(final LocalDateTime localSystemDateTime, final ZoneId sourceZone) {
return LocalDateTimeUtilities.atZone(localSystemDateTime, sourceZone, ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static LocalDateTime atSystemZone(final ZonedDateTime dateTime) {
return LocalDateTimeUtilities.atZone(dateTime, ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static LocalDateTime atCoordinatedUniversalTimeZone(final LocalDateTime localSystemDateTime) {
return LocalDateTimeUtilities.atZone(
localSystemDateTime,
ZonedDateTimeUtilities.getSystemZone(),
ZonedDateTimeUtilities.getCoordinatedUniversalTimeZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static LocalDateTime atCoordinatedUniversalTimeZone(final LocalDateTime localSystemDateTime) {
return LocalDateTimeUtilities.atZone(
localSystemDateTime,
ZonedDateTimeUtilities.getSystemZone(),
ZonedDateTimeUtilities.getCoordinatedUniversalTimeZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static LocalDateTime atUserZone(final LocalDateTime localSystemDateTime) {
return LocalDateTimeUtilities
.atZone(localSystemDateTime, ZonedDateTimeUtilities.getSystemZone(), ZonedDateTimeUtilities.getUserZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static LocalDateTime atSystemZone(final LocalDateTime userDateTime) {
return LocalDateTimeUtilities
.atZone(userDateTime, ZonedDateTimeUtilities.getUserZone(), ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static LocalDateTime atUserZone(final LocalDateTime localSystemDateTime) {
return LocalDateTimeUtilities
.atZone(localSystemDateTime, ZonedDateTimeUtilities.getSystemZone(), ZonedDateTimeUtilities.getUserZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static LocalDateTime atSystemZone(final LocalDateTime userDateTime) {
return LocalDateTimeUtilities
.atZone(userDateTime, ZonedDateTimeUtilities.getUserZone(), ZonedDateTimeUtilities.getSystemZone());
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static String toString(final ZonedDateTime dateTime) {
final LocalDateTime userDateTime = atUserZone(dateTime);
return userDateTime.atZone(ZonedDateTimeUtilities.getSystemZone()).format(
new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE)
.appendLiteral(' ')
.append(
new DateTimeFormatterBuilder()
.appendValue(HOUR_OF_DAY, 2)
.appendLiteral(':')
.appendValue(MINUTE_OF_HOUR, 2)
.toFormatter(Locale.getDefault()))
.toFormatter(Locale.getDefault()));
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static String toStringAtUserTimeZone(final LocalDateTime systemDateTime) {
final LocalDateTime userDateTime = atUserZone(systemDateTime);
return userDateTime.atZone(ZonedDateTimeUtilities.getSystemZone()).format(
new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE)
.appendLiteral(' ')
.append(
new DateTimeFormatterBuilder()
.appendValue(HOUR_OF_DAY, 2)
.appendLiteral(':')
.appendValue(MINUTE_OF_HOUR, 2)
.toFormatter(Locale.getDefault()))
.toFormatter(Locale.getDefault()));
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-core
public static String toStringAtUserTimeZone(final LocalDateTime systemDateTime) {
final LocalDateTime userDateTime = atUserZone(systemDateTime);
return userDateTime.atZone(ZonedDateTimeUtilities.getSystemZone()).format(
new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE)
.appendLiteral(' ')
.append(
new DateTimeFormatterBuilder()
.appendValue(HOUR_OF_DAY, 2)
.appendLiteral(':')
.appendValue(MINUTE_OF_HOUR, 2)
.toFormatter(Locale.getDefault()))
.toFormatter(Locale.getDefault()));
}
代码示例来源:origin: net.anwiba.commons/anwiba-commons-utilities
public static String toString(final ZonedDateTime dateTime) {
final LocalDateTime userDateTime = atUserZone(dateTime);
return userDateTime.atZone(ZonedDateTimeUtilities.getSystemZone()).format(
new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE)
.appendLiteral(' ')
.append(
new DateTimeFormatterBuilder()
.appendValue(HOUR_OF_DAY, 2)
.appendLiteral(':')
.appendValue(MINUTE_OF_HOUR, 2)
.toFormatter(Locale.getDefault()))
.toFormatter(Locale.getDefault()));
}
本文整理了Java中net.anwiba.commons.utilities.time.ZonedDateTimeUtilities.getSystemZone()方法的一些代码示例,展示了Zoned
本文整理了Java中net.anwiba.commons.utilities.time.ZonedDateTimeUtilities.getUserZone()方法的一些代码示例,展示了ZonedDa
本文整理了Java中net.anwiba.commons.utilities.time.ZonedDateTimeUtilities.getCoordinatedUniversalTimeZone()
我是一名优秀的程序员,十分优秀!