美文网首页
MessageFormat格式化json串

MessageFormat格式化json串

作者: 岑吾 | 来源:发表于2022-05-07 17:40 被阅读0次

在使用MessageFormat格式化json字符串的时候,会应为{会导致格式化失败。使用'转移就可以了。

如:

        String str = "'{'\"info\":\"{0}\",\"status\":\"{1}\"'}'";
        String result = MessageFormat.format(str, "aa","bb");
        System.out.println(result);

输出{"info":"aa","status":"bb"}

相关文章

网友评论

      本文标题:MessageFormat格式化json串

      本文链接:https://www.haomeiwen.com/subject/baexurtx.html