从SimpleDateFormat迁移到DateTimeFormater:额外的输入



我正在将一些旧代码从SimpleDateFormat迁移到DateTimeFormatter。(Apache MIME4J库,将带来显著的性能提升!(

在电子邮件领域工作时,我需要遵守RFC-5322,并提出了以下格式化程序:

public static final DateTimeFormatter RFC_5322 = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.parseLenient()
.optionalStart()
.appendText(DAY_OF_WEEK, dayOfWeek())
.appendLiteral(", ")
.optionalEnd()
.appendValue(DAY_OF_MONTH, 1, 2, SignStyle.NOT_NEGATIVE)
.appendLiteral(' ')
.appendText(MONTH_OF_YEAR, monthOfYear())
.appendLiteral(' ')
.appendValueReduced(YEAR, 2, 4, INITIAL_YEAR)
.appendLiteral(' ')
.appendValue(HOUR_OF_DAY, 2)
.appendLiteral(':')
.appendValue(MINUTE_OF_HOUR, 2)
.optionalStart()
.appendLiteral(':')
.appendValue(SECOND_OF_MINUTE, 2)
.optionalEnd()
.optionalStart()
.appendLiteral('.')
.appendValue(MILLI_OF_SECOND, 3)
.optionalEnd()
.optionalStart()
.appendLiteral(' ')
.appendOffset("+HHMM", "GMT")
.optionalEnd()
.optionalStart()
.appendLiteral(' ')
.appendOffsetId()
.optionalEnd()
.optionalStart()
.appendLiteral(' ')
.appendPattern("0000")
.optionalEnd()
.optionalStart()
.appendLiteral(' ')
.appendPattern("(zzz)")
.optionalEnd()
.toFormatter()
.withZone(ZoneId.of("GMT"));

这对于Thu, 4 Oct 2001 20:12:26 -0700 (PDT)这样的输入非常有效。

然而,一些边缘电子邮件在:Date: Thu, 4 Oct 2001 20:12:26 -0700 (PDT),Thu, 4 Oct 2001 20:12:26 -0700之后有额外的字符,使解析失败。。。

我想要一些通配符来表示";现在您可以自由忽略额外的输入";。。。

以前基于SimpleDateFormat的版本处理得很好。。。

以下是拉取请求的链接:https://github.com/apache/james-mime4j/pull/44

提前感谢您的帮助!

DateTimeFormatter#parse(CharSequence, ParsePosition)由您决定。

演示:

import java.text.ParsePosition;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Locale;
public class Main {
public static void main(String[] args) {
String s = "08/01/2021&&";
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("MM/dd/uuuu", Locale.ENGLISH);
LocalDate date = LocalDate.from(dtf.parse(s, new ParsePosition(0)));
System.out.println(date);
}
}

输出:

2021-08-01

在线演示

RFC_5322.parse(body,new ParsePosition(0((解决了这个问题。。。

相关内容

  • 没有找到相关文章

最新更新