- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 Calendar 实例转换为 instant,我正在这样做
Calendar cal = new GregorianCalendar();
System.out.println(cal.getTime());
Instant inst = cal.toInstant();
System.out.println(inst.toString());
它的输出如下
Fri Oct 30 17:23:40 IST 2015
2015-10-30T11:53:40.037Z
所以,我的问题是关于 Calendar 和 instant 的输出差异。即时的输出是格林威治标准时间而不是本地时间。我还没有看到任何文档说 Instant 类只给出格林威治标准时间的日期。所以,我不确定为什么会这样。
最佳答案
Invoking toString on an Instant produces output like the following:
2013-05-30T23:38:23.085Z
This format follows the ISO-8601 standard for representing date and time.
看看:
关于java - 日历中的 toInstant() 以格林威治标准时间而不是本地时间显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33435491/
这是我的测试代码,日期 1111-11-11即时方法结果是 1111-11-17 jshell> new Date(-789,10,11) $8 ==> Sat Nov 11 00:00:00 JST
我正在尝试将 Calendar 实例转换为 instant,我正在这样做 Calendar cal = new GregorianCalendar(); System.out.prin
本文整理了Java中java.time.ZonedDateTime.toInstant()方法的一些代码示例,展示了ZonedDateTime.toInstant()的具体用法。这些代码示例主要来源于
我将于2018年12月7日运行以下表达式。 我看到了这样的差异: ZonedDateTime.now(ZoneId.of("America/New_York")).minusDays(30) 返回(正
本文整理了Java中org.threeten.bp.ZonedDateTime.toInstant()方法的一些代码示例,展示了ZonedDateTime.toInstant()的具体用法。这些代码示
当我运行测试时: @RunWith(PowerMockRunner.class) @PrepareForTest(MyStuff.class) public class MyStuffTest { .
java.util.Date 类有一个名为toInstant() 的方法,该方法将Date 实例转换为java。 time.Instant. java.sql.Date 类扩展了 java.util.
我正在开发一部分代码,其中我必须使用日历 API 使用现有的 api,而我使用的是全新的 API。在转换中出现了一些奇怪的行为,请看这个例子: SimpleDateFormat df = new Si
如果我使用java.util.Date的toInstant()在一个恰好是 java.sql.Date 的变量上,我得到一个UnsupportedOperationException 。 try {
我是一名优秀的程序员,十分优秀!