我正在读取可以带或不带时区调整的日期字符串:yyyyMMddHHmmssz
或yyyyMMddHHmmss
。当字符串缺少一个区域时,我将其视为GMT。我没有看到任何方法在SimpleDateFormat
中创建可选部分,但也许我错过了一些东西。有办法做到这一点与SimpleDateFormat
,或者我应该写一个新的具体DateFormat
来处理这个?
JSR-310已经随Java 8一起发布,Java 8提供了对解析时态值的增强支持,其中组件现在可能是可选的。您不仅可以将区域设置为可选,还可以将时间组件设置为可选,并为给定字符串返回正确的时间单位。
考虑以下测试用例。
public class DateFormatTest {
private final DateTimeFormatter formatter = DateTimeFormatter.ofPattern(
"yyyy-MM-dd[[ ]['T']HH:mm[:ss][XXX]]");
private TemporalAccessor parse(String v) {
return formatter.parseBest(v,
ZonedDateTime::from,
LocalDateTime::from,
LocalDate::from);
}
@Test public void testDateTime1() {
assertEquals(LocalDateTime.of(2014, 9, 23, 14, 20, 59),
parse("2014-09-23T14:20:59"));
}
@Test public void testDateTime2() {
assertEquals(LocalDateTime.of(2014, 9, 23, 14, 20),
parse("2014-09-23 14:20"));
}
@Test public void testDateOnly() {
assertEquals(LocalDate.of(2014, 9, 23), parse("2014-09-23"));
}
@Test public void testZonedDateTime() {
assertEquals(ZonedDateTime.of(2014, 9, 23, 14, 20, 59, 0,
ZoneOffset.ofHoursMinutes(10, 30)),
parse("2014-09-23T14:20:59+10:30"));
}
}
这里"yyyy-MM-dd[[ ]['T']HH:mm[:ss][XXX]]"
的DateTimeFormatter模式允许方括号内的可选选项,也可以嵌套。模式也可以从DateTimeFormatterBuilder构造,上面的模式在这里演示:
private final DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE)
.optionalStart()
.optionalStart()
.appendLiteral(' ')
.optionalEnd()
.optionalStart()
.appendLiteral('T')
.optionalEnd()
.appendOptional(DateTimeFormatter.ISO_TIME)
.toFormatter();
这将转换为如下表达式:
yyyy-MM-dd[[' ']['T']HH:mm[':'ss[.SSS]]].
可选值可以嵌套,如果仍然打开,也会在结束时自动关闭。但是请注意,没有办法在可选部分上提供独占或,因此上面的格式实际上可以很好地解析以下值:
2018-03-08 T11:12
请注意,我们可以重用现有的格式化器作为当前格式的一部分。
我知道这是一个旧的帖子,但只是为了记录…
Apache DateUtils类可以帮助你。
String[] acceptedFormats = {"dd/MM/yyyy","dd/MM/yyyy HH:mm","dd/MM/yyyy HH:mm:ss"};
Date date1 = DateUtils.parseDate("12/07/2012", acceptedFormats);
Date date2 = DateUtils.parseDate("12/07/2012 23:59:59", acceptedFormats);
链接到Maven存储库中的Apache Commons Lang库,您可能需要检查最新版本:
http://mvnrepository.com/artifact/org.apache.commons/commons-lang3
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
Gradle v3.4
'org.apache.commons:commons-lang3:3.4'
我将创建两个SimpleDateFormat,一个带时区,一个不带时区。您可以查看字符串的长度来决定使用哪一个。
听起来你需要一个DateFormat来委托两个不同的SDF。
DateFormat df = new DateFormat() {
static final String FORMAT1 = "yyyyMMddHHmmss";
static final String FORMAT2 = "yyyyMMddHHmmssz";
final SimpleDateFormat sdf1 = new SimpleDateFormat(FORMAT1);
final SimpleDateFormat sdf2 = new SimpleDateFormat(FORMAT2);
@Override
public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition) {
throw new UnsupportedOperationException();
}
@Override
public Date parse(String source, ParsePosition pos) {
if (source.length() - pos.getIndex() == FORMAT1.length())
return sdf1.parse(source, pos);
return sdf2.parse(source, pos);
}
};
System.out.println(df.parse("20110102030405"));
System.out.println(df.parse("20110102030405PST"));
如果您可以使用Joda Datetime,它支持formatter中的可选部分,例如"yyyy-MM-dd [hh:mm:ss]"
private DateTimeFormatter fmt = new DateTimeFormatterBuilder()
.append(DateTimeFormat.forPattern("yyyy-MM-dd"))
.appendOptional(
new DateTimeFormatterBuilder()
.appendLiteral(' ')
.append(DateTimeFormat.forPattern("HH:mm:ss"))
.toParser()
.toFormatter();
我将使用try-catch
操作遍历潜在的DateFormat
对象列表,以便在第一次成功解析时中断循环。
您可以创建两个不同的SimpleDateFormats
,如
public PWMDateTimeFormatter(String aPatternStr)
{
_formatter = DateTimeFormat.forPattern(aPatternStr);
}
public PWMDateTimeFormatter(String aPatternStr, TimeZone aZone)
{
_formatter = DateTimeFormat.forPattern(aPatternStr).withZone(XXDateTime._getTimeZone(aZone));
}
我以前通过扩展SimpleDateFormat解决了一个类似的问题。下面是一个粗略的实现,以展示我的解决方案的思想。它可能没有完全完成/优化。
public class MySimpleDateFormat extends SimpleDateFormat {
private static final long serialVersionUID = 1L;
private static String FORMAT = "
private static int FORMAT_LEN = "yyyyMMddHHmmss".length();
private static String TZ_ID = "GMT";
public MySimpleDateFormat() {
this(TimeZone.getTimeZone(TZ_ID));
}
public MySimpleDateFormat(TimeZone tz) {
super(FORMAT);
setTimeZone(tz);
}
@Override
public Date parse(String source, ParsePosition pos) {
// TODO: args validation
int offset = pos.getIndex() + FORMAT_LEN;
Date result;
if (offset < source.length()) {
// there maybe is a timezone
result = super.parse(source, pos);
if (result != null) {
return result;
}
if (pos.getErrorIndex() >= offset) {
// there isn't a TZ after all
String part0 = source.substring(0, offset);
String part1 = source.substring(offset);
ParsePosition anotherPos = new ParsePosition(pos.getIndex());
result = super.parse(part0 + TZ_ID + part1, anotherPos);
if(result == null) {
pos.setErrorIndex(anotherPos.getErrorIndex());
} else {
// check SimpleDateFormat#parse javadoc to implement correctly the pos updates
pos.setErrorIndex(-1);
pos.setIndex(offset);
}
return result;
}
// there's something wrong with the first FORMAT_LEN chars
return null;
}
result = super.parse(source + TZ_ID, pos);
if(result != null) {
pos.setIndex(pos.getIndex() - TZ_ID.length());
}
return result;
}
public static void main(String [] args) {
ParsePosition pos = new ParsePosition(0);
MySimpleDateFormat mySdf = new MySimpleDateFormat();
System.out.println(mySdf.parse("20120622131415", pos) + " -- " + pos);
pos = new ParsePosition(0);
System.out.println(mySdf.parse("20120622131415GMT", pos) + " -- " + pos);
pos = new ParsePosition(0);
System.out.println(mySdf.parse("20120622131415xxx", pos) + " -- " + pos);
pos = new ParsePosition(0);
System.out.println(mySdf.parse("20120x22131415xxx", pos) + " -- " + pos);
}
}
要点是,您需要检查输入字符串并以某种方式"猜测"TZ字段是否缺失,如果是的话添加它,然后让SimpleDateFormat#parse(String, ParsePosition)
完成其余的工作。上面的实现没有根据SimpleDateFormat#parse(String, ParsePosition)
由于只允许一种格式,该类只有一个默认的actor。
方法MySimpleDateFormat#parse(String, ParsePosition)
是由SimpleDateFormat#parse(String)
调用的,所以它足以涵盖这两种情况。
运行main()这是输出(如预期)
Fri Jun 22 14:14:15 BST 2012 -- java.text.ParsePosition[index=14,errorIndex=-1]
Fri Jun 22 14:14:15 BST 2012 -- java.text.ParsePosition[index=17,errorIndex=-1]
Fri Jun 22 14:14:15 BST 2012 -- java.text.ParsePosition[index=14,errorIndex=-1]
null -- java.text.ParsePosition[index=0,errorIndex=5]