MessageFormat.format("region = '{0}'", "en");
实际结果是region = {0}
如果需要被替换的话,需要用双单引号
MessageFormat.format("region = ''{0}''", "en");
05-11 20:36