- 浏览: 5597 次
- 性别:
- 来自: 长沙
最近访客 更多访客>>
文章列表
一、Substring
1.包含空指针异常处理的subString,开始
public static String substring(String str, int start) {
if (str == null) {
return null;
}
// handle negatives, which means last n characters
if (start < 0) {
start = str.length() + start; // ...
一、判空(Empty checks)
1。判断字符串是否为空(为NULL或者为"")
public static boolean isEmpty(String str) {
return str == null || str.length() == 0;
}
2.相应的,有检验字符串不为空的
public static boolean isNotEmpty(String str) {
return !StringUtils.isEmpty(str);
}
3.判断字符串 ...
xhEditor是一个基于jQuery开发的简单迷你并且高效的轻量可视化XHTML编辑器,基于网络访问并且兼容IE 6.0+,Firefox 3.0+,Opera 9.6+,Chrome 1.0+,Safari 3.22+。此次v1.1.0版主要变化在于提升编辑器用户体验,在修正大量问题的基础上增加了各种提升用户体验的实用功能,例如HTML5功能支持下的直接将文件拖入编辑区域上传功能,就能极大的提高用户操作效率,改善使用体验。
查看最新版演示:http://xheditor.com/demo
更多官方在线演示:
1. 默认模式:http://xheditor.com/demos/de ...
项目需要,获取上一周周一和周日。
代码如下
// 如果需要制定日期转换的话
// String srcTime = "2010-08-11";
// Date temp = DateUtils.parseStringToUtilDate(srcTime);
Calendar calendar = Calendar.getInstance();
//calendar.setTime(temp);
calendar.set(Calendar.DAY_OF_WEEK,Calendar.MONDAY);
calendar.add(Calen ...
CommKeyValueBean为一个自定义VO
public static List<CommKeyValueBean> genWeekList(){
List<CommKeyValueBean> weekList = new ArrayList<CommKeyValueBean>();
String[] zh = {"一", "二", "三", "四", "五", "六", "日"};
...