在使用MessageFormat格式化json字符串的时候,会应为{
会导致格式化失败。使用'
转移就可以了。
如:
String str = "'{'\"info\":\"{0}\",\"status\":\"{1}\"'}'";
String result = MessageFormat.format(str, "aa","bb");
System.out.println(result);
输出{"info":"aa","status":"bb"}