Tagged Questions
3
votes
4answers
3k views
Can I escape braces in a java MessageFormat?
I want to output some braces in a java MessageFormat. For example I know the following does not work:
MessageFormat.format(" public {0} get{1}() {return {2};}\n\n", type, upperCamel, lowerCamel);
...
0
votes
3answers
295 views
better alternative to message format
I have a string of following format
Select * where {{0} rdfs:label "Aruba" } limit 10
Now I would like to replace {0} with some new text, but the problem is message format is unable to parse the ...