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


Java MessageFormat setFormat()用法及代碼示例


java.text.MessageFormat類的setFormats()方法用於在此消息格式對象的模式中的特定索引處設置新的格式元素。

用法:

public void setFormat(int formatElementIndex,
                      Format newFormat)

參數:此方法將以下參數作為參數:


  • formatElementIndex:這是將要放置新格式元素的特定索引。
  • newFormat:這是將要放置的新Format元素。

返回值:此方法無返回值。

異常:如果formatElementIndex超出範圍,則此方法將引發ArrayIndexOutOfBoundsException。

下麵是說明setFormat()方法的示例:

範例1:

// Java program to demonstrate 
// setFormats() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        // creating and initializing  MessageFormat 
        MessageFormat mf 
            = new MessageFormat("{0, date, #}, {0, number, #.##}, {0, time}"); 
  
        // display the current pattern 
        System.out.println("old pattern:"
                           + mf.toPattern()); 
  
        // getting all the format element 
        // used in MessageFormat Object 
        Format[] formats = mf.getFormats(); 
  
        // setting the new format element 
        // at particular index 
        // using setFormat() method 
        for (int i = 0; i < formats.length; i++) 
            mf.setFormat(i, formats[1]); 
  
        // display the result 
        System.out.println("\nnew pattern:"
                           + mf.toPattern()); 
    } 
}
輸出:
old pattern:{0,date, #}, {0,number, #0.##}, {0,time}

new pattern:{0,number, #0.##}, {0,number, #0.##}, {0,number, #0.##}

範例2:

// Java program to demonstrate 
// setFormats() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
            // creating and initializing  MessageFormat 
            MessageFormat mf 
                = new MessageFormat("{0, date, #}, {0, number, #.##}, {0, time}"); 
  
            // display the current pattern 
            System.out.println("old pattern:"
                               + mf.toPattern()); 
  
            // getting all the format element 
            // used in MessageFormat Object 
            Format[] formats = mf.getFormats(); 
  
            // setting the new format element 
            // at particular index 
            // using setFormat() method 
            for (int i = 0; i <= formats.length + 1; i++) 
                mf.setFormat(-1, formats[1]); 
  
            // display the result 
            System.out.println("\nnew pattern:"
                               + mf.toPattern()); 
        } 
        catch (ArrayIndexOutOfBoundsException e) { 
            System.out.println("\narray is out of bound"); 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
輸出:
old pattern:{0,date, #}, {0,number, #0.##}, {0,time}

array is out of bound
Exception thrown:java.lang.ArrayIndexOutOfBoundsException:-1

參考: https://docs.oracle.com/javase/9/docs/api/java/text/MessageFormat.html#setFormat-int-java.text.Format-



相關用法


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