Groovy脚本(足够容易放入Java中)演示了@bobince关于SimpleDateFormat的观点。
import java.text.SimpleDateFormatSimpleDateFormat sdf = new SimpleDateFormat('MM/dd/yy')SimpleDateFormat fmt = new SimpleDateFormat('yyyy-MM-dd')Calendar cal = Calendar.getInstance()cal.add(Calendar.YEAR, -100)sdf.set2DigitYearStart(cal.getTime())dates = ['01/01/01', '10/30/08','01/01/09']dates.each {String d -> println fmt.format(sdf.parse(d))}
产量
2001-01-012008-10-301909-01-01
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)