从我的cmd运行简单的日期解析代码时,它会抛出异常“ java.util.missing resource exception:无法构造日历”
import com.ibm.icu.text.SimpleDateFormat;
String fromDate = null;
String toDate = null;
SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-YYYY HH:mm:ss");
SimpleDateFormat newformat = new SimpleDateFormat("YYYY-MM-dd HH:mm:ss");
fromDate = newformat.format(dateFormat.parse(effrom));
toDate = newformat.format(dateFormat.parse(efto));