程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 使用DateFormat類輸出各種格式的時間(上)

使用DateFormat類輸出各種格式的時間(上)

編輯:關於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 曲金龍 [email protected] * @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("******************************************"); }}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved