我必须根据语言环境加载属性文件,并且我的 servlet 中有以下代码。
ResourceBundle contactBundle = ResourceBundle.getBundle("/popproperties/impprops", request.getLocale());
我还创建了如下popproperties
文件夹内的道具文件。
impprops_en_US.properties
//some key value pairs here
上面的代码工作正常,没有任何问题。我的问题是我只有一个 porperties 文件作为impprops_en_US.properties
. 如果用户将浏览器设置从美国更改为其他区域设置,则没有其他相应区域设置的属性文件。在这种情况下,我仍然必须加载impprops_en_US.properties
文件。我怎样才能做到这一点?我需要再创建一个属性文件impprops.properties
吗?
谢谢!