我想在一个Java MessageFormat输出一些大括号。 例如,我知道以下不起作用: MessageFormat.format(" public {0} get{1}() {return {2};}\n\n", type, upperCamel, lowerCamel); 有没有办法绕过“return {2}”的大括号?
简单的问题,但我敢打赌,问这里可能会比尝试了解MessageFormat的文档更直接: long foo = 12345; String s = MessageFormat.format("{0}", foo); 观察值是“12,345”。 期望的值是“12345”。