标签:
1.获取Timestamp格式的时间
Date date = new Date(); Timestamp ts = new Timestamp(date.getTime());
2.遍历一个Map集合
Map<String,Object> map = new HashMap<String,Object>; Set<String> set = map.keySet(); for(String key:set){ map.get(key); }
3.判断一个字符串中是否包含指定字符
String reg = ("[‘\\<>$!%#*&]"); Pattern p = Pattern.compile(reg); Matcher m = p.matcher(value); boolean flag = m.find(); //包含返回true 不包含返回false
标签:
原文地址:http://www.cnblogs.com/xiao-fy/p/5037251.html