·您的位置: 首页 » 资源教程 » 编程开发 » JAVA、JSP » 使用DateFormat类输出各种格式的时间(上)

使用DateFormat类输出各种格式的时间(上)

类别: JAVA教程  评论数:0 总得分:0

import java.util.Date;import java.text.DateFormat;

/** * 格式化时间类 * DateFormat.FULL = 0 * DateFormat.DEFAULT = 2 * DateFormat.LONG = 1 * DateFormat.MEDIUM = 2 * DateFormat.SHORT = 3 * @author    曲金龙 qujl@neusoft.com     * @version   1.0, 2005/04/16  */

public class FormatDate{    public static void main(String []args){        Date d = new Date();        String s;                  /** Date类的格式: Sat Apr 16 13:17:29 CST 2005 */        System.out.println(d);                  System.out.println("******************************************");                   /** getDateInstance() */         /** 输出格式: 2005-4-16 */        s = DateFormat.getDateInstance().format(d);        System.out.println(s);                /** 输出格式: 2005-4-16 */        s = DateFormat.getDateInstance(DateFormat.DEFAULT).format(d);        System.out.println(s);                /** 输出格式: 2005年4月16日 星期六 */        s = DateFormat.getDateInstance(DateFormat.FULL).format(d);        System.out.println(s);                /** 输出格式: 2005-4-16 */        s = DateFormat.getDateInstance(DateFormat.MEDIUM).format(d);        System.out.println(s);                /** 输出格式: 05-4-16 */        s = DateFormat.getDateInstance(DateFormat.SHORT).format(d);        System.out.println(s);                System.out.println("******************************************");     }}        



-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1