Properties文件:java.util.MissingResourceException: Can't find bundle for base name
解决办法
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");elsebind = ResourceBundle.getBundle("locale.message" + locale);}return bind;}ResourceBundle.getBundle("locale.message");