java使用DateFormat类,转换时间格式
显示源文件复制到剪贴板打印关于
1. import java.util.Date; 
2. import&DateFormat; 
3.  
4. /** 
5.  * 格式化时间类 
6.  * DateFormat.FULL = 0 
7.  * DateFormat.DEFAULT = 2 
8.  * DateFormat.LONG = 1 
9.  * DateFormat.MEDIUM = 2 
10.  * DateFormat.SHORT = 3 
11.  */ 
12.  
13. public class FormatDate{ 
14.     public static void main(String []args){ 
15.         Date d = new Date(); 
16.         String s; 
17.  
18.         /** Date类的格式: Sat Apr 16 13:17:29 CST 2005 */ 
19.         System.out.println(d); 
20.  
21.         System.out.println("******************************************");     
22.  
23.         /** getDateInstance() */ 
24.         /** 输出格式: 2005-4-16 */ 
25.         s =&DateInstance().format(d); 
26.         System.out.println(s); 
27.  
28.         /** 输出格式: 2005-4-16 */ 
29.         s =&DateInstance(DateFormat.DEFAULT).format(d); 
30.         System.out.println(s); 
31.  
32.         /** 输出格式: 2005年4月16日 星期六 */ 
33.         s =&DateInstance(DateFormat.FULL).format(d); 
34.         System.out.println(s); 
35.  
36.         /** 输出格式: 2005-4-16 */ 
37.         s =&DateInstance(DateFormat.MEDIUM).format(d); 
38.         System.out.println(s); 
39.  
40.         /** 输出格式: 05-4-16 */ 
41.         s =&DateInstance(DateFormat.SHORT).format(d); 
42.         System.out.println(s); 
43.  
44.         System.out.println("******************************************"); 
45.     } 
java时间日期格式转换
46.

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。