`

Properties文件:java.util.MissingResourceException: Can't find bundle for base name

    博客分类:
  • Java
 
阅读更多
解决办法
1: http://blog.sina.com.cn/s/blog_4bb5650c01007t2f.html
2: http://www.iteye.com/topic/44357

ResourceBundle的例子 http://blog.sina.com.cn/s/blog_48f74ef301000bm1.html
Java读取Properties文件的六种方法 http://blog.csdn.net/senton/article/details/4083127

private static ResourceBundle getBind() {
		if (bind == null) {
			if (locale == null || locale.equals(""))
				bind = ResourceBundle.getBundle("locale.message");
			else
				bind = ResourceBundle.getBundle("locale.message" + locale);
		}
		return bind;

	}

在web方式,其实不用按照第二种来解决,按照第一种来解决。
首先把message文件放在src/locale下面,有message.properties,message_en_US.properties,message_zh_CN.properties。
ResourceBundle.getBundle("locale.message");

"locale.message" 这个是package的路径。

解决。













分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics