日期格式化java_JAVA格式化时间日期

import java.util.Date;

import java.text.DateFormat;

/**

* 格式化时间类

* DateFormat.FULL = 0

* DateFormat.DEFAULT = 2

* DateFormat.LONG = 1

* DateFormat.MEDIUM = 2

* DateFormat.SHORT = 3

* @author    Michael

* @version   1.0, 2007/03/09

*/

public class Test{

public static void main(String []args){

Date d = new Date();

String s;

/** Date类的格式: Sat Apr 16 13:17:29 CST 2006 */

System.out.println(d);

System.out.println("******************************************");

/** getDateInstance() */

/** 输出格式: 2006-4-16 */

s = DateFormat.getDateInstance().format(d);

System.out.println(s);

/** 输出格式: 2006-4-16 */

s = DateFormat.getDateInstance(DateFormat.DEFAULT).format(d);

System.out

你可能感兴趣的:(日期格式化java)