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


Java MessageFormat applyPattern()用法及代码示例


java.text.MessageFormat类的applyPattern()方法用于通过覆盖当前的FormatElement,FormatType和FormatStyle为当前MessageFormat设置新的模式文本。

用法:

public void applyPattern(String newPattern)

参数:此方法将字符串newPattern作为参数,这是此MessageFormat对象的新文本模式。


返回值:此方法不返回任何内容。

异常:如果指定的newPattern为null,则此方法引发NullPointerException。

下面是说明applyPattern()方法的示例:

范例1:

// Java program to demonstrate 
// applyPattern() 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, number, #}, {0, number, #.##}, {0, number}"); 
  
        // display the result 
        System.out.println("old pattern:"
                           + mf.toPattern()); 
  
        // applying new string pattern 
        // to this MessageFormat Object 
        // using applyPattern() method 
        mf.applyPattern("{0, time, #}"); 
  
        // display the result 
        System.out.println("\nnew pattern:"
                           + mf.toPattern()); 
    } 
}
输出:
old pattern:{0, number, #}, {0, number, #0.##}, {0, number}

new pattern:{0, date, #}

范例2:

// Java program to demonstrate 
// applyPattern() 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, #}, {1, time, #}, {0, number}"); 
  
            // display the result 
            System.out.println("old pattern:"
                               + mf.toPattern()); 
  
            // applying new string pattern 
            // to this MessageFormat Object 
            // using applyPattern() method 
            mf.applyPattern(null); 
  
            // display the result 
            System.out.println("\nnew pattern:"
                               + mf.toPattern()); 
        } 
        catch (NullPointerException e) { 
            System.out.println("\nString is Null"); 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
输出:
old pattern:{0, date, #}, {1, date, #}, {0, number}

String is Null
Exception thrown:java.lang.NullPointerException

参考: https://docs.oracle.com/javase/9/docs/api/java/text/MessageFormat.html#applyPattern-java.lang.String-



相关用法


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