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);

Is there a way of escaping the braces surrounding "return {2}"?

link|improve this question

80% accept rate
Thanks. Funnily enough I did scan through the javadoc, but I'm fairly sure because the example they gave contained {0} (making it look like a substitution example) I must have just skimmed over it. – Steve Bosman Jul 27 '09 at 8:58
feedback

4 Answers

up vote 12 down vote accepted

You can put them inside single quotes e.g.

'{'return {2};'}'

See here for more details.

link|improve this answer
+1 i thought it was \ but ' is the correct one – Markus Lausberg Jul 27 '09 at 8:44
feedback

Wow. Surprise! The documentation for MessageFormat knows the answer:

Within a String, "''" represents a single quote. A QuotedString can contain arbitrary characters except single quotes; the surrounding single quotes are removed. An UnquotedString can contain arbitrary characters except single quotes and left curly brackets. Thus, a string that should result in the formatted message "'{0}'" can be written as "'''{'0}''" or "'''{0}'''".

link|improve this answer
feedback

Use single quotes:

MessageFormat.format("  public {0} get{1}() '{'return {2};'}'\n\n",
                     type, upperCamel, lowerCamel);

If you want to actualyl use a single quote, just double it. The JavaDoc for MessageFormat gives this somewhat complicated example:

Thus, a string that should result in the formatted message "'{0}'" can be written as "'''{'0}''" or "'''{0}'''".

This is '' for a single quote, then '{' for an escaped brace, then 0, '}' for the closing brace and '' for the closing quote.

link|improve this answer
feedback
String sql = "select * from app_Main where primary_Key = upper(\''{0}\'')";
Object [] replacable = {new Integer(0)};

System.out.println(MessageFormat.format(sql, replacable)+"\n");

Use this one, will definitely help. Thanks

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.