我的日期为String
,但有时它没有有效的日期或月份(值为零,00
)。
示例:
String value = "03082017";
然后我这样做:
String day = value.substring(0,2);
String month = value.substring(2,4);
String year = value.substring(4,8);
if(day.equals("00")) {
day = "01";
}
if(month.equals("00")) {
month = "01";
}
value = day + month + year;
这适用于示例String
。
现在我有了这个字符串:
String value = "00092017" //ddMMyyyy
然后我的代码会将00
天转换为01
。
这适用于模式ddMMyyyy
,但现在是我的问题:我可以有不同的模式:ddMMyyyy
或MMddyyyy
或yyyy/dd/MM
等
我的解决方案是首先检查模式(例如MMddyyyy
)然后查看我的值03092017
(ddMMyyyy
)并将数字带到我的日期字符串我的模式中的位置dd。
因此代码的格式为ddMMyyyy
,但值为03092017
(MMddyyyy
)
String day = "03";
.....
我的代码:
public void doSomething(String valueWithDate, String pattern){
// now I become:
// valueWithDate = 01092017
// pattern = ddMMyyyy
String day = valueWithDate.substring(0,2);
String month = valueWithDate.substring(2,4);
String year = valueWithDate.substring(4,8);
//Works I get my information but what is when I get other pattern/value? for example:
// valueWithDate = 09082017
// pattern = MMddyyyy
// now I want my information again, but day is not on substring 0,2
}
答案 0 :(得分:3)
如果您使用 Java 8 ,则可以使用new java.time API。它更容易,less bugged and less error-prone than the old APIs。
如果您正在使用 Java< = 7 ,则可以使用ThreeTen Backport,这是Java 8新日期/时间类的绝佳后端。对于 Android ,您还需要ThreeTenABP(更多关于如何使用它here)。
以下代码适用于两者。
唯一的区别是包名称(在Java 8中为java.time
而在ThreeTen Backport(或Android的ThreeTenABP中)为org.threeten.bp
),但类和方法名称是一样的。
您可以使用严格模式的DateTimeFormatter
来执行此操作。这允许日期和月份中的值为零。其他模式不起作用:默认模式不接受零,而宽松模式尝试进行自动转换,因此严格模式是唯一适用于此情况的模式。
然后,您将获得各个字段(日期和月份)并检查它们是否为零。我使用getLong
方法(并转换为int
),因为get
方法(返回int
)检查返回的值是否有效(因此零值抛出异常)。
最后,您加入所有部分以获得输出:
String valueWithDate = "00092017";
String pattern = "ddMMyyyy";
// create formatter with the pattern and strict mode
DateTimeFormatter fmt = DateTimeFormatter.ofPattern(pattern).withResolverStyle(ResolverStyle.STRICT);
// parse the input
TemporalAccessor parsed = fmt.parse(valueWithDate);
// get day from the parsed object
int day = (int) parsed.getLong(ChronoField.DAY_OF_MONTH);
if (day == 0) {
day = 1;
}
// get month from the parsed object
int month = (int) parsed.getLong(ChronoField.MONTH_OF_YEAR);
if (month == 0) {
month = 1;
}
// get year from the parsed object
int year = (int) parsed.getLong(ChronoField.YEAR_OF_ERA);
// the final value will have the same pattern? if so, just use the same formatter
String value = fmt.format(LocalDate.of(year, month, day));
System.out.println(value); // 01092017
因此,对于输入00092017
和模式ddMMyyyy
,上面的代码将打印出来:
01092017
根据@MenoHochschild's comment的建议,您还可以使用parseUnresolved
方法,该方法不会对值进行验证,因此它允许在日期和月份为零(并且您不会需要将格式化程序设置为严格模式。)
此方法还需要java.text.ParsePosition
,用于检查解析错误(因为它不像parse
方法那样抛出异常):
// create formatter, no need of strict mode
DateTimeFormatter fmt = DateTimeFormatter.ofPattern(pattern);
// parse
ParsePosition pos = new ParsePosition(0);
TemporalAccessor parsed = fmt.parseUnresolved(valueWithDate, pos);
// check errors
if (pos.getErrorIndex() >= 0) {
// error in parsing (getErrorIndex() returns the index where the error occurred)
}
// rest of the code is the same
如@OleV.V.'s comment建议的那样,您还可以使用以下方法检查整个输入是否未被解析:
if(pos.getIndex() < valueWithDate.length()) {
// the input String wasn't fully parsed
}
我假设最终值与输入中使用的格式相同(传递给方法的模式相同)。
如果您想要另一种格式的值,只需创建另一种格式不同的格式:
// output in another format
DateTimeFormatter output = DateTimeFormatter.ofPattern("MMddyyyy");
String value = output.format(LocalDate.of(year, month, day));
System.out.println(value); // 09012017