错误:
java.lang.IllegalArgumentException: Cannot format given Object as a Date
源码:
firstVisitState = getRuntimeContext().getState(new ValueStateDescriptor<String>("firstVisitState", String.class));
sdf = new SimpleDateFormat("yyyy-MM-dd");
//状态中保存的是字符串,直接用format格式化,很容易报错.
String yesterday = sdf.format(firstVisitState.value() == null ? 0L : firstVisitState.value());
错误原因分析:
1.format函数只能传入Date数据类型 输出为String类型
2.parse函数输入为String类型,输出为Date类型.
这里状态中保存的是字符串,不能直接用format函数.

错误解决:
firstVisitState = getRuntimeContext().getState(new ValueStateDescriptor<String>("firstVisitState", String.class));
sdf = new SimpleDateFormat("yyyy-MM-dd");
//将状态中的String转为Date类型,再用format即可.
Date date = sdf.parse(firstVisitState.value() == null ? "1970-01-01 00:00:00" : firstVisitState.value());
String yesterday = sdf.format(date);
Java日期格式化错误修复

博客详细分析了在Java编程中遇到的IllegalArgumentException,原因是尝试将字符串格式化为日期时直接使用了format方法,而状态中保存的数据实际是字符串。解决方案是先将字符串转换为Date对象,再进行格式化操作,避免了错误的发生。通过使用SimpleDateFormat的parse方法将字符串转换为日期,然后用format方法生成格式化后的日期字符串。
1089

被折叠的 条评论
为什么被折叠?



