當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java DateFormat getDateTimeInstance()用法及代碼示例


Java中的DateFormat類的getDateTimeInstance()方法用於獲取日期/時間格式化程序。此日期/時間格式化程序帶有默認語言環境的默認格式化樣式。

用法:

public static final DateFormat getDateTimeInstance()

參數:該方法不帶任何參數。


返回值:該方法以特定格式返回日期/時間格式化程序。

以下程序說明了Java中getDateTimeInstance()方法的用法:
示例1:

// Java code to illustrate 
// getDateTimeInstance() method 
  
import java.text.*; 
import java.util.*; 
  
public class DateFormat_Demo { 
    public static void main(String[] argv) 
    { 
  
        // Initializing the first formatter 
        DateFormat DFormat 
            = DateFormat.getDateTimeInstance(); 
        System.out.println("Object: " + DFormat); 
  
        // String formatting 
        String str = DFormat.format(new Date()); 
  
        // Displaying the string time 
        System.out.println(str); 
    } 
}
輸出:
Object: java.text.SimpleDateFormat@7945516e
Mar 28, 2019 4:03:11 AM

示例2:

// Java code to illustrate 
// getDateTimeInstance() method 
  
import java.text.*; 
import java.util.*; 
  
public class DateFormat_Demo { 
    public static void main(String[] args) 
        throws InterruptedException 
    { 
  
        // Initializing SimpleDateFormat 
        SimpleDateFormat SDFormat 
            = new SimpleDateFormat( 
                "MM/dd/yyyy"); 
  
        // Displaying the formats 
        Date date = new Date(); 
        String str_Date1 
            = SDFormat.format(date); 
        System.out.println("The Original: "
                           + (str_Date1)); 
  
        // Initializing the Time formatter 
        DateFormat DFormat 
            = DateFormat.getDateTimeInstance(); 
        System.out.println("Object: " + DFormat); 
  
        // String formatting 
        String str = DFormat.format(new Date()); 
  
        // Displaying the string time 
        System.out.println(str); 
    } 
}
輸出:
The Original: 03/28/2019
Object: java.text.SimpleDateFormat@7945516e
Mar 28, 2019 4:03:13 AM

參考: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#getDateTimeInstance()



相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 DateFormat getDateTimeInstance() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。