可以获取当前的年月时分,也可以分开写:

SimpleDateFormat sDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); String date = sDateFormat.format(new java.util.Date());

如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):

SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM"); String date=sdf.format(new java.util.Date()); 

有两种方法:
方法一:用java.util.Date类来实现,并结合java.text.DateFormat类来实现时间的格式化,看下面代码:
import java.util.*;
 import java.text.*; //以下默认时间日期显示方式都是汉语语言方式 //一般语言就默认汉语就可以了,时间日期的格式默认为MEDIUM风格,比如:2008-6-16 20:54:53 //以下显示的日期时间都是再Date类的基础上的来的,还可以利用Calendar类来实现见类TestDate2.java public class TestDate { public static void main(String[] args) { Date now = new Date(); Calendar cal = Calendar.getInstance(); DateFormat d1 = DateFormat.getDateInstance(); //默认语言(汉语)下的默认风格(MEDIUM风格,比如:2008-6-16 20:54:53) String str1 = d1.format(now); DateFormat d2 = DateFormat.getDateTimeInstance(); String str2 = d2.format(now); DateFormat d3 = DateFormat.getTimeInstance(); String str3 = d3.format(now); DateFormat d4 = DateFormat.getInstance(); //使用SHORT风格显示日期和时间 String str4 = d4.format(now); DateFormat d5 = DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL); //显示日期,周,时间(精确到秒) String str5 = d5.format(now); DateFormat d6 = DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG); //显示日期。时间(精确到秒) String str6 = d6.format(now); DateFormat d7 = DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT); //显示日期,时间(精确到分) String str7 = d7.format(now); DateFormat d8 = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM); //显示日期,时间(精确到分) String str8 = d8.format(now);//与SHORT风格相比,这种方式最好用 System.out.println("用Date方式显示时间: " + now);//此方法显示的结果和Calendar.getInstance().getTime()一样 System.out.println("用DateFormat.getDateInstance()格式化时间后为:" + str1); System.out.println("用DateFormat.getDateTimeInstance()格式化时间后为:" + str2); System.out.println("用DateFormat.getTimeInstance()格式化时间后为:" + str3); System.out.println("用DateFormat.getInstance()格式化时间后为:" + str4); System.out.println("用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化时间后为:" + str5); System.out.println("用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化时间后为:" + str6); System.out.println("用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化时间后为:" + str7); System.out.println("用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化时间后为:" + str8); } } 
运行结果:
 用Date方式显示时间: Mon Jun 16 20:54:53 CST 2008 用DateFormat.getDateInstance()格式化时间后为:2008-6-16 用DateFormat.getDateTimeInstance()格式化时间后为:2008-6-16 20:54:53 用DateFormat.getTimeInstance()格式化时间后为:20:54:53 用DateFormat.getInstance()格式化时间后为:08-6-16 下午8:54 用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化时间后为 :2008年6月16日 星期一 下午08时54分53秒 CST 用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化时间后为 :2008年6月16日 下午08时54分53秒 用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化时间后 为:08-6-16 下午8:54 用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化时间 后为:2008-6-16 20:54:53 

有两种方法:
方法一:用java.util.Date类来实现,并结合java.text.DateFormat类来实现时间的格式化,看下面代码:
import java.util.*;
 import java.text.*;
 //以下默认时间日期显示方式都是汉语语言方式
 //一般语言就默认汉语就可以了,时间日期的格式默认为MEDIUM风格,比如:2008-6-16 20:54:53
 //以下显示的日期时间都是再Date类的基础上的来的,还可以利用Calendar类来实现见类TestDate2.java
 public class TestDate {
<wbr><wbr>public static void main(String[] args) {<br><wbr><wbr><wbr><wbr><wbr>Date now = new Date();<br><wbr><wbr><wbr><wbr><wbr>Calendar cal = Calendar.getInstance();<br><wbr><wbr><wbr><wbr><wbr><br><wbr><wbr><wbr><wbr><wbr>DateFormat d1 = DateFormat.getDateInstance(); //默认语言(汉语)下的默认风格(MEDIUM风格,比如:2008-6-16 20:54:53)<br><wbr><wbr><wbr><wbr><wbr>String str1 = d1.format(now);<br><wbr><wbr><wbr><wbr><wbr>DateFormat d2 = DateFormat.getDateTimeInstance();<br><wbr><wbr><wbr><wbr><wbr>String str2 = d2.format(now);<br><wbr><wbr><wbr><wbr><wbr>DateFormat d3 = DateFormat.getTimeInstance();<br><wbr><wbr><wbr><wbr><wbr>String str3 = d3.format(now);<br><wbr><wbr><wbr><wbr><wbr>DateFormat d4 = DateFormat.getInstance(); //使用SHORT风格显示日期和时间<br><wbr><wbr><wbr><wbr><wbr>String str4 = d4.format(now);</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr><wbr><wbr><wbr><wbr><wbr>DateFormat d5 = DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL); //显示日期,周,时间(精确到秒)<br><wbr><wbr><wbr><wbr><wbr>String str5 = d5.format(now);<br><wbr><wbr><wbr><wbr><wbr>DateFormat d6 = DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG); //显示日期。时间(精确到秒)<br><wbr><wbr><wbr><wbr><wbr>String str6 = d6.format(now);<br><wbr><wbr><wbr><wbr><wbr>DateFormat d7 = DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT); //显示日期,时间(精确到分)<br><wbr><wbr><wbr><wbr><wbr>String str7 = d7.format(now);<br><wbr><wbr><wbr><wbr><wbr>DateFormat d8 = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM); //显示日期,时间(精确到分)<br><wbr><wbr><wbr><wbr><wbr>String str8 = d8.format(now);//与SHORT风格相比,这种方式最好用</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr>
<wbr></wbr>
<wbr><wbr><wbr><wbr><wbr><br><wbr><wbr><wbr><wbr><wbr>System.out.println("用Date方式显示时间: " + now);//此方法显示的结果和Calendar.getInstance().getTime()一样<br><wbr><wbr><wbr><wbr><wbr><br><wbr><wbr><wbr><wbr><wbr><br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getDateInstance()格式化时间后为:" + str1);<br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getDateTimeInstance()格式化时间后为:" + str2);<br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getTimeInstance()格式化时间后为:" + str3);<br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getInstance()格式化时间后为:" + str4);<br><wbr><wbr><wbr><wbr><wbr><br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化时间后为:" + str5);<br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化时间后为:" + str6);<br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化时间后为:" + str7);<br><wbr><wbr><wbr><wbr><wbr>System.out.println("用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化时间后为:" + str8);<br><wbr><wbr>}</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr>
}
运行结果:
用Date方式显示时间: Mon Jun 16 20:54:53 CST 2008
 用DateFormat.getDateInstance()格式化时间后为:2008-6-16
 用DateFormat.getDateTimeInstance()格式化时间后为:2008-6-16 20:54:53
 用DateFormat.getTimeInstance()格式化时间后为:20:54:53
 用DateFormat.getInstance()格式化时间后为:08-6-16 下午8:54
 用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化时间后为
 :2008年6月16日 星期一 下午08时54分53秒 CST
 用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化时间后为
 :2008年6月16日 下午08时54分53秒
 用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化时间后
 为:08-6-16 下午8:54
 用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化时间
 后为:2008-6-16 20:54:53<wbr></wbr>
方法二:用java.util.Calendar类来实现,看下面:
 import java.util.*; import java.text.*; //以下是利用Calendar类来实现日期时间的,和Date类相比较比较简单 public class TestDate2 { public static void main(String[] args) { Calendar ca = Calendar.getInstance(); int year = ca.get(Calendar.YEAR);//获取年份 int month=ca.get(Calendar.MONTH);//获取月份 int day=ca.get(Calendar.DATE);//获取日 int minute=ca.get(Calendar.MINUTE);//分 int hour=ca.get(Calendar.HOUR);//小时 int second=ca.get(Calendar.SECOND);//秒 int WeekOfYear = ca.get(Calendar.DAY_OF_WEEK); System.out.println("用Calendar.getInstance().getTime()方式显示时间: " + ca.getTime()); System.out.println("用Calendar获得日期是:" + year +"年"+ month +"月"+ day + "日"); System.out.println("用Calendar获得时间是:" + hour +"时"+ minute +"分"+ second +"秒"); System.out.println(WeekOfYear);//显示今天是一周的第几天(我做的这个例子正好是周二,故结果显示2,如果你再周6运行,那么显示6) } } 
运行结果是:
 用Calendar.getInstance().getTime()方式显示时间: Mon Jun 16 21:54:21 CST 2008 用Calendar获得日期是:2008年5月16日 用Calendar获得时间是:9时54分21秒 2 

 总结:中的来说,方法二是最方便的,方法一显得分笨拙,不过看个人喜欢了。 还有一种方法利用System.currentTimeMillis()也可以的,下次再总结这种方法。 


import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.*; public class calendar { private static SimpleDateFormat h; private static Map<String ,Integer> map = new HashMap<String, Integer>(); static{ map.put("date", Calendar.DATE); map.put("month", Calendar.MONTH); map.put("year", Calendar.YEAR); map.put("hour", Calendar.HOUR); map.put("minute", Calendar.MINUTE); map.put("second", Calendar.SECOND); map.put("millisecond", Calendar.MILLISECOND); map.put("天", Calendar.DATE); map.put("月", Calendar.MONTH); map.put("年", Calendar.YEAR); map.put("时", Calendar.HOUR); map.put("分", Calendar.MINUTE); map.put("秒", Calendar.SECOND); map.put("毫", Calendar.MILLISECOND); } public static void Test(Date date,String type, int number) { Calendar cal = new GregorianCalendar(); cal.setTime(date); long a = cal.getTimeInMillis(); System.out.println(a); cal.add(map.get(type), number); long b = cal.getTimeInMillis(); Date newDate = cal.getTime();System.out.println(b-a);//7天时间差604800000毫秒 System.out.println(DateFormat.getDateTimeInstance().format(newDate) + " " + date.getTime()%1000); } public static void main(String arg[]){ //过时方法请不要使用 Date date=new Date(); Test(date,"date",7); //Test(date,"分",5); //Test(date,"minute",-5); } }