首页 > 代码库 > 日期String相互转换

日期String相互转换

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date endate = sdf.parse(endDate);Date nowd = new Date();String nowstr = sdf.format(nowd);

 parse是转为Data

format是转为String 

日期String相互转换