------解决方案-------------------- JDK API里面很详细都可以解答你的问题!
------解决方案-------------------- 1,2,3、使用SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"),sdf.parse和sdf.format转换
所有日期与字符串的转换都可以使用SimpleDateFormat
4、Calendar cal = Calendar.getInstance();就可以
------解决方案-------------------- 有JAVA API吗?没有我可以传你一份。里面讲的很清楚。
------解决方案--------------------
主要就是 Calendar now = Calendar.getInstance(); long s = now.getTimeMillings(); Date d = now.getTime();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");