- 博客(3)
- 收藏
- 关注
原创 正则替换全角空格和逗号
char blank = ' ';// 全角空格System.out.println("\\u" + Integer.toHexString(blank));// \u3000 char comma = ',';// 全角逗号System.out.println("\\u" + Integer.toHexString(comma));// \uff0cString s...
2015-12-09 22:51:14
2549
mysql 1292 错误
执行如下sql,报了mysql 1292 错误码及描述:Truncated incorrect DOUBLE value ……update act_code set status=3,`activeTime`=now() where id in( select id from ( select id from act_code where status=0 and se...
2015-11-28 15:45:37
12985
原创 Java自动创建多层文件目录
[code="java"]// 创建文件上传路径 public static void mkdir(String path) { File fd = null; try { fd = new File(path); if (!fd.exists()) { fd.mkdirs(); } } catch (Exception e) { ...
2010-10-19 13:34:12
453
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人