
其他开发-ing问题
文章平均质量分 69
cherry__cheng
开源中国【https://git.oschina.net/cherrycheng】你的目标还算不算数?
展开
-
Java日志框架
http://blog.youkuaiyun.com/chszs/article/details/8653460http://www.blogjava.net/kuxiaoku/archive/2007/01/19/94825.htmlhttp://soft.chinabyte.com/database/438/11321938.shtmlhttp://blog.youkuaiyun.com/li...原创 2014-06-13 11:22:34 · 131 阅读 · 0 评论 -
初识lombok
lombok介绍,调试等的讨论:http://www.iteye.com/topic/1113871原创 2014-06-19 11:21:22 · 126 阅读 · 0 评论 -
StringUtils方法介绍
转自:http://blog.sina.com.cn/s/blog_4550f3ca0100qrsd.html org.apache.commons.lang.StringUtils中方法的操作对象是java.lang.String类型的对象,是JDK提供的String类型操作方法的补充,并且是null安全的(即如果输入参数String为null则不会抛出NullPointerExcept...原创 2014-06-19 11:34:07 · 121 阅读 · 0 评论 -
Java 枚举7常见种用法
引自:http://softbeta.iteye.com/blog/1185573DK1.5引入了新的类型——枚举。在 Java 中它虽然算个“小”功能,却给我的开发带来了“大”方便。 用法一:常量在JDK1.5 之前,我们定义常量都是: public static fianl.... 。现在好了,有了枚举,可以把相关的常量分组到一个枚举类型里,而且枚举提供了比常量更多的方...原创 2014-06-20 17:59:16 · 136 阅读 · 0 评论 -
解决java.util.MissingResourceException: Can't find bundle for base name systemConf
使用ResourceBundle访问位于/WEB-INF/classes目录下的一个后缀名为properties的文本类型文件,从里面读取我们需要的值。 1.读取默认文件夹classes Locale locale = Locale.getDefault(); ResourceBundle localResource = ResourceBundle.ge...原创 2014-12-09 18:31:49 · 3842 阅读 · 0 评论