- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个看起来像这样的字符串:
String str = "Jun 26th 2021, 04:30:15 pm NY";
我想将它转换为 ZonedDateTime
,为此我使用 DateTimeFormatterBuilder
:
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.appendPattern("MMM dd'th' uuuu, h:mm:ss a z")
.toFormatter(Locale.US);
ZonedDateTime result = ZonedDateTime.parse(str, formatter);
但是解析器对这种格式不满意我得到了这个错误:
java.time.format.DateTimeParseException: Text 'Jun 26th 2021, 04:30:15 pm NY' could not be parsed at index 27
似乎 NY
没有被 z
覆盖,请问关于这个错误的任何想法,还有什么技巧可以避免 'th'
在解析器中 ?
最佳答案
DateTimeFormatter#parse(CharSequence, ParsePosition)
随时为您服务。
请注意,NY
不是时区的名称。时区的命名约定是地区/城市,例如欧洲/巴黎
。您可以使用 ZoneId#getAvailableZoneIds
获取时区名称列表.
此外,对于带有序号的月份中的某天,例如26th,您可以构建一个Map
,如下代码所示。
演示:
import java.text.ParsePosition;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeFormatterBuilder;
import java.time.temporal.ChronoField;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
public class Main {
public static void main(String[] args) {
String strDateTime ="Jun 26th 2021, 04:30:15 pm NY";
DateTimeFormatter dtf = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.appendPattern("[MMMM][MMM] ") // caters for both full name and 3-letter abbv.
.appendText(ChronoField.DAY_OF_MONTH, ordinalMap())
.appendPattern(" u, h:m:s a")
.toFormatter(Locale.ENGLISH);
LocalDateTime ldt = LocalDateTime.from(dtf.parse(strDateTime, new ParsePosition(0)));
ZonedDateTime zdt = ldt.atZone(ZoneId.of("America/New_York"));
System.out.println(zdt);
}
static Map<Long, String> ordinalMap() {
String[] suffix = { "th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th" };
Map<Long, String> map = new HashMap<>();
for (int i = 1; i <= 31; i++)
map.put((long)i, String.valueOf(i) + suffix[(i > 3 && i < 21) ? 0 : (i % 10)]);
return map;
}
}
输出:
2021-06-26T16:30:15-04:00[America/New_York]
从 Trail: Date Time 了解有关现代日期时间 API 的更多信息.
礼貌:构建 map
的逻辑基于this excellent answer .
关于Java时间解析 "Jun 26th 2021, 04:30:15 pm NY",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68140852/
template class Pair { private: T1 a; T2 b; public: T1 & first() { return a; } T2 & second()
我正在为我正在编写的稀疏矩阵类(学校项目的一部分)研究 equals() 方法。我经常遇到这样一个问题,它不允许我使用任何方法或其他特定于我的类的成员,因为 that(我用于参数的名称 equals)
我尝试使用 Ajax 和纯 Javascript 发布请求,基本上我在页面上存在的所有 HTML 表单的提交按钮上添加一个监听器。 触发时,这些监听器检索用户输入的数据并将它们发布到我的远程服务器。
我正在尝试获取纽约(美国/东部)和 UTC 之间的当前偏移量。无论我的服务器所在的时区以及其他任何时区,我如何获得此值。我只想要以毫秒为单位的偏移量。我确信有一种快速的方法可以做到这一点,但我还没有找
我需要区分 Queens style地址,来自有效的范围地址,以及带有单位#的地址。例如: 皇后区风格:123-125 Some Street, NY 远程地址:6414-6418 37th Ln S
我有这个类,其中“nome”字段不能为空 public class Utente { ...... @NotEmpty @Size(min=2, max=30)
我在 WebGL 项目中使用立方体贴图,我的同事为我提供了标记为前、后、左、右、上和下的面的图像资源。然而Three.js's example code使用标有 2 个字母的图像。 p 或 n 后跟
我有一个看起来像这样的字符串: String str = "Jun 26th 2021, 04:30:15 pm NY"; 我想将它转换为 ZonedDateTime,为此我使用 DateTimeFo
我用 JSF 制作了一个 Web 应用程序并在 Tomcat 上运行它。 在 webapp 中,有几个动态创建的 URL。例如,/ny/不是根 (WebContent) 文件夹下的文件夹。当用户请求/
我是一名优秀的程序员,十分优秀!