1.java.text.Format的继承结构如下

 

2.MessageFormat模式

FormatElement

{ ArgumentIndex }:是从0开始的入参位置索引

{ ArgumentIndex , FormatType }

{ ArgumentIndex , FormatType , FormatStyle }

FormatType:指定使用不同的Format子类对入参进行格式化处理。值范围如下:

number:调用NumberFormat进行格式化

date:调用DateFormat进行格式化

time:调用DateFormat进行格式化

choice:调用ChoiceFormat进行格式化

FormatStyle:设置FormatType中使用的格式化样式。值范围如下:

short、medium、long、full、integer、currency、percent、SubformatPattern (子格式模式,形如#.##)

还以str为例,在这个字符串中:

1、{0}和{1,number,short}和{2,number,#.#};都属于FormatElement,0,1,2是ArgumentIndex。

2、{1,number,short}里面的number属于FormatType,short则属于FormatStyle。

3、{1,number,#.#}里面的#.#就属于子格式模式。

指定FormatType和FormatStyle是为了生成日期格式的值、不同精度的数字、百分比类型等等。

3.用法

1、ArgumentIndex必须是非负整数,它的个数不只限于0到9这10个,它可以用0到9的数字组成,因此可以有好多个,如:
  1.  
    String msg = "{0}{1}{2}{3}{4}{5}{6}{7}{8}";  
  2.  
    Object [] array = new Object[]{"A","B","C","D","E","F","G","H","I",};         
  3.  
    String value = MessageFormat.format(msg, array);  
  4.  
    System.out.println(value);  // 输出:ABCDEFGHI

2、格式化字符串时,两个单引号才表示一个单引号,单个单引号会被省略,除非中文单引号不会被省略,如:

  1.  
    String value = MessageFormat.format("oh, {0} is 'a' pig", "ZhangSan");
  2.  
    System.out.println(value); // 输出:oh, ZhangSan is a pig
给字母a加上单引号,如:
  1.  
    String value = MessageFormat.format("oh, {0} is 'a' pig", "ZhangSan"); 
  2.  
    System.out.println(value);  // 输出:oh, ZhangSan is a pig

如果需要显示双引号要进行转移,比如:String msg = "oh, {0} is \"a\" pig";

3、单引号会使其后面的占位符均失效,导致直接输出占位符。

  1.  
    MessageFormat.format("{0}{1}", 1, 2); // 结果12
  2.  
    MessageFormat.format("'{0}{1}", 1, 2); // 结果{0}{1}
  3.  
    MessageFormat.format("'{0}'-{1}", 1, 2); // 结果{0}-2

使用双引号和两个单引号没有关系,比如

  1.  
    String value = MessageFormat.format("oh, ''{0}'' is a pig", "ZhangSan");  
  2.  
    System.out.println(value);  // 输出:oh, 'ZhangSan' is a pig

又比如,使用子格式模式,多了一个单引号:

  1.  
    String value = MessageFormat.format("oh, {0,number,#.#} is good num", Double.valueOf("3.1415"));  
  2.  
    System.out.println(value);  // 输出:oh, 3.1 is good num

3、无论是有引号字符串还是无引号字符串,左花括号都是不支持的,如:

  1.  
    String value = MessageFormat.format("oh, } is good num", Double.valueOf("3.1415"));    
  2.  
    System.out.println(value);  // 输出:oh, } is good num

如果使用左花括号会出现异常

  1.  
    String value = MessageFormat.format("oh, { is good num", Double.valueOf("3.1415"));  
  2.  
    System.out.println(value);  // java.lang.IllegalArgumentException: Unmatched braces in the pattern.

因此要使用到左花括号需要使用单引号配合使用

MessageFormat.format("'{'{0}}", "X-rapido"); // {X-rapido}

还有一个有趣的现象,如果出现两个或2个以上左花括号,就会出现分割字符串,但是右花括号就没问题,虽然没有任何意义,实际应用我们也用不到

  1.  
    String value = MessageFormat.format("oh, {{ is good num", "d");  
  2.  
    System.out.println(value);  // oh,   
  3.  
     
  4.  
    String value = MessageFormat.format("oh, }} is good num", "d");    
  5.  
    System.out.println(value);  // oh, }} is good num

关于MessageFormat.format方法:

每调用一次MessageFormat.format方法,都会新创建MessageFormat的一个实例,相当于MessageFormat只使用了一次。MessageFormat类的format方法如下:

  1.  
    public static String format(String pattern, Object ... arguments){    
  2.  
        MessageFormat temp = new MessageFormat(pattern);    
  3.  
        return temp.format(arguments);    
  4.  
    }

因此若要多次格式同一个模式的字符串,那么创建一个MessageFormat实例在执行格式化操作比较好些

    1.  
      String message = "oh, {0} is a pig";    
    2.  
      MessageFormat messageFormat = new MessageFormat(message);    
    3.  
      Object[] array = new Object[]{"ZhangSan"};    
    4.  
      String value = messageFormat.format(array);    
    5.  
          
    6.  
      System.out.println(value);

MessageFormat.format()用法的更多相关文章

  1. MessageFormat.format用法

    用法一: package gacl.request.study; import java.io.IOException; import java.text.MessageFormat; import ...

  2. java MessageFormat.format 用法

    FormatElement: { ArgumentIndex }:是从0开始的入参位置索引. { ArgumentIndex , FormatType } { ArgumentIndex , Form ...

  3. String.format和MessageFormat.format的对比用法

    1.MessageFormat.format import java.text.MessageFormat; /** * Created by SYJ on 2017/9/13. */ public ...

  4. 关于java中MessageFormat.format中单引号问题

    我们知道java中可以用MessageFormat.format来格式化字符串.这个方法在我们的实际开发中经常用到,有点类似模板,这样我们就不需要用很恶心的拼接字符串了.如下面 String s1=& ...

  5. Java魔法堂:初探MessageFormat.format和ChoiceFormat

    一.前言 刚开始从.net的转向java的时候总觉得 String.format 用得不习惯,希望格式模版会这样 {}, }$s,$s's cat.%2$s,this is %1$s's dog. . ...

  6. MessageFormat理解,MessageFormat.format(Object obj)方法

    MessageFormat.format(Object obj)方法主要用途为拼接message信息 用法: Object[] testArgs = {new String("张三" ...

  7. 7. JDK拍了拍你:字符串拼接一定记得用MessageFormat#format

    目录 ✍前言 版本约定 ✍正文 DateFormat:日期时间格式化 SimpleDateFormat NumberFormat:数字格式化 DecimalFormat 一.0和#的使用(最常见使用场 ...

  8. C#中string.format用法详解

    C#中string.format用法详解 本文实例总结了C#中string.format用法.分享给大家供大家参考.具体分析如下: String.Format 方法的几种定义: String.Form ...

  9. String.format()用法

    package junit.test;   import java.util.Date; import java.util.Locale;   import org.junit.Test;   pub ...

随机推荐

  1. hdu_2054_A == B_201311301601

    A == B ? Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total S ...

  2. K - Count the string kmp_Next数组应用

    It is well known that AekdyCoin is good at string problems as well as number theory problems. When g ...

  3. ZooKeeper教程资源收集(简介/原理/示例/解决方案)

    菩提树下的杨过: ZooKeeper 笔记(1) 安装部署及hello world ZooKeeper 笔记(2) 监听数据变化 ZooKeeper 笔记(3) 实战应用之[统一配置管理] ZooKe ...

  4. ubuntu 关于sublime text3的一些应用

    安装 如今能够通过ppa的方法来安装sublime text3 了,个人感觉就是有有点儿慢,毕竟要update一下. sudo add-apt-repository ppa:webupd8team/s ...

  5. [Vue] Code split by route in VueJS

    In this lesson I show how to use webpack to code split based on route in VueJS. Code splitting is a ...

  6. Java 递归、尾递归、非递归、栈 处理 三角数问题

    import java.io.BufferedReader; import java.io.InputStreamReader; //1,3,6,10,15...n 三角数 /* * # 1 * ## ...

  7. jsonArray和Java List对象互转,日期处理

    List转jsonArray : // 格式化日期 JsonConfig jsonConfig = new JsonConfig(); DSHJsonDateValueProcessor dshJso ...

  8. job调度时间格式

    */5 * * * * ?---------------每隔5秒执行一次0 */1 * * * ?---------------每隔1分钟执行一次0 0 23 * * ?--------------- ...

  9. openSTack manual 整合调优

  10. 洛谷P2916 [USACO08NOV]为母牛欢呼(最小生成树)

    P2916 [USACO08NOV]为母牛欢呼Cheering up the C… 题目描述 Farmer John has grown so lazy that he no longer wants ...