码迷,mamicode.com
首页 > 其他好文 > 详细

格式化的几种用法

时间:2018-03-31 14:21:45      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:ref   str   rgs   sage   example   com   gpo   message   amp   

String.format详情参考地址

public class FormatWay {
   static final String detail_url = "http://www.example.com?local={0}";
    public static void main(String[] args) {
        String val = String.format("%s:%s", "hello", "world");
        String detailUrl = MessageFormat.format(detail_url, "hello");
        System.out.println(val);
        System.out.println(detailUrl);

    }
}

格式化的几种用法

标签:ref   str   rgs   sage   example   com   gpo   message   amp   

原文地址:https://www.cnblogs.com/DivineHost/p/8681696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!