摘要: 2. Calendar 对象的容错性,Lenient 设置 我们知道特定的月份有不同的日期,当一个用户给出错误的日期时,Calendar 如何处理的呢? import java.io.*; import java.util.*; public class WhatIsCalendar { publi 阅读全文
posted @ 2012-07-03 10:58 肖建春 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 一、Calendar、Date、long之间的转换 Calendar与Date、long的转换 Calendar ca = Calendar.getInstance(); Date d = ca.getTime(); long l = ca.getTimeInMillis(); ca.setTime 阅读全文
posted @ 2012-07-03 10:57 肖建春 阅读(511) 评论(0) 推荐(0) 编辑