String str_date = currentMonth + 1 + "-" + value.toString() + "-" + currentYear;
DateFormat formatter ;
Date date = null ;
formatter = new SimpleDateFormat("dd-MMM-yy");
try {
date = (Date)formatter.parse(str_date);
}
catch (ParseException e) {
e.printStackTrace();
}
System.out.println(date);
嗨,我试图搜索迄今为止的字符串,几乎每个人都使用这种代码,但它似乎仍然打印出 null?谢谢你。