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


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


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

用法:

public static final DateFormat getDateInstance()

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


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

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

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

示例2:

// Java code to illustrate 
// getDateInstance() 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 Date formatter 
        DateFormat DFormat 
            = DateFormat.getDateInstance(); 
        System.out.println("Object: " + DFormat); 
  
        // String formatting 
        String str = DFormat.format(new Date()); 
  
        // Displaying the string date 
        System.out.println(str); 
    } 
}
輸出:
The Original: 03/27/2019
Object: java.text.SimpleDateFormat@ce9bf0a5
Mar 27, 2019

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



相關用法


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