当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java SimpleDateFormat setDateFormatSymbols()用法及代码示例


SimpleDateFormat类的setDateFormatSymbols()方法用于设置此日期格式的日期和时间格式符号。

用法:

public void setDateFormatSymbols(DateFormatSymbols newFormatSymbols)

参数:该方法采用一个参数newFormatSymbols,该参数表示要将此Date格式设置为的新格式符号。


返回值:该方法返回void类型。

以下示例程序旨在说明SimpleDateFormat的setDateFormatSymbols()方法的用法:
示例1:

// Java code to illustrate 
// DateFormatSymbols() method 
  
import java.text.*; 
import java.util.*; 
  
public class SimpleDateFormat_Demo { 
    public static void main(String[] args) 
        throws InterruptedException, ParseException 
    { 
        // Initializing SimpleDateFormat 
        SimpleDateFormat SDFormat 
            = new SimpleDateFormat(); 
  
        // Setting the DateFormatSymbols 
        DateFormatSymbols DFSymbols 
            = new DateFormatSymbols( 
                new Locale("en", 
                           "US")); 
  
        // Illustrating the set method 
        SDFormat.setDateFormatSymbols(DFSymbols); 
  
        // Displaying the formats 
        Date date = new Date(); 
        String str_Date1 = SDFormat.format(date); 
        System.out.println("The SimpleDateFormat: "
                           + (str_Date1)); 
  
        // Working of DFS 
        String[] the_days 
            = DFSymbols.getShortWeekdays(); 
        int i, j = 1; 
        for (i = 1; i < the_days.length; i++) { 
            System.out.print("Day" + j++ + " : "
                             + the_days[i] + "\n"); 
        } 
    } 
}
输出:
The SimpleDateFormat: 1/30/19 10:27 AM
Day1 : Sun
Day2 : Mon
Day3 : Tue
Day4 : Wed
Day5 : Thu
Day6 : Fri
Day7 : Sat

示例2:

// Java code to illustrate 
// DateFormatSymbols() method 
  
import java.text.*; 
import java.util.*; 
  
public class SimpleDateFormat_Demo { 
    public static void main(String[] args) 
        throws InterruptedException, ParseException 
    { 
        // Initializing SimpleDateFormat 
        SimpleDateFormat SDFormat 
            = new SimpleDateFormat(); 
  
        // Setting the DateFormatSymbols 
        DateFormatSymbols DFSymbols 
            = new DateFormatSymbols( 
                new Locale("es", 
                           "XL")); 
  
        // Illustrating the set method 
        SDFormat.setDateFormatSymbols(DFSymbols); 
  
        // Displaying the formats 
        Date date = new Date(); 
        String str_Date1 = SDFormat.format(date); 
        System.out.println("The SimpleDateFormat: "
                           + (str_Date1)); 
  
        // Working of DFS 
        String[] the_days 
            = DFSymbols.getShortWeekdays(); 
        int i, j = 1; 
        for (i = 1; i < the_days.length; i++) { 
            System.out.print("Day" + j++ + " : "
                             + the_days[i] + "\n"); 
        } 
    } 
}
输出:
The SimpleDateFormat: 1/30/19 10:28 AM
Day1 : dom
Day2 : lun
Day3 : mar
Day4 : mi?
Day5 : jue
Day6 : vie
Day7 : s?b


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 SimpleDateFormat setDateFormatSymbols() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。