摘要:
第一步:导入架包*spring3.2.3版本的架包将spring的各个功能模块给分开了,我们必须将Spring必须依赖的包导入上去第二步:编写配置文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 work16 17 18 19 ... 阅读全文
摘要:
1 /** 2 * 按照指定的格式格式化时间字符串 如果没有传入字符串,那么按照指定的格式格式化当前时间 3 * @param formatStr 格式后的模样,如:yyyy-MM-dd HH:mm:ss 4 * @param dateStr 要格式的时间字符串 5 * @return 6 */ 7 public static Date sendDate(String formatStr, String dateStr) { 8 DateFormat sdf = new SimpleDateFormat(formatS... 阅读全文