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