首页 > 代码库 > MessageFormat.format处理单引号和大括号
MessageFormat.format处理单引号和大括号
在MessageFormat.format方法中组装jason数据字符串:{code:"w1",des:"w2"},起止分别有左大括号和右大括号。方法是将单引号把大括号包含起来。如下:
String responseTemplate = "‘{‘code:\"{0}\",des:\"{1}\"‘}‘";
System.out.println(MessageFormat.format(responseTemplate, "w1","w2"));
如果格式化字符串中包含单引号,处理方法是用2个单引号进行转义:
String responseTemplate = "‘{‘code:‘‘{0}‘‘,des:‘‘{1}‘‘‘}‘";
System.out.println(MessageFormat.format(responseTemplate, "w1","w2"));
处理结果:{code:‘w1‘,des:‘w2‘}
MessageFormat.format处理单引号和大括号
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。