MessageFormat with ” Leave a Comment / Java / May 14, 2009 May 14, 2009 MessageFormat.format("Hi, {0} {1}", "朱", "元璋"); //Hi, 朱 元璋 MessageFormat.format("Hi, '{0}' {1}", "朱", "元璋"); //Hi, {0} 元璋 MessageFormat.format("Hi', {0} {1}", "朱", "元璋"); //Hi, {0} {1} MessageFormat.format("Hi, {0} {1}", "'朱'", "元璋"); //Hi, '朱' 元璋