getBundle找不到属性文件

时间:2011-06-15 16:23:05

标签: java properties google-checkout

我正在尝试使用属性文件来存储我的Google Checkout商家信息。当我致电ResourceBundle.getBundle("com_google_checkout_example_settings");

我收到错误:

java.util.MissingResourceException: Can't find bundle for base name com_google_checkout_example_settings, locale en_US

我需要在哪里放置属性文件,以便getBundle()可以找到它?我是否需要将语言环境添加到属性文件中?

2 个答案:

答案 0 :(得分:5)

该文件需要包含在您的类路径中。如果它已经被包含但是在包内,那么你需要提供完整的路径 - 即:ResourceBundle.getBundle("com/google/example/checkout_settings.txt")

答案 1 :(得分:2)

  

我需要在哪里放置属性文件

放入classpath,以便运行时它可用。

for web app将它放在WEB-INF/classes/ for jar中,将其添加到某个包然后

ResourceBundle.getBundle("some/package/resources.properties");