- 浏览: 29261 次
- 性别:
- 来自: 北京
最新评论
文章列表
char blank = ' ';// 全角空格
System.out.println("\\u" + Integer.toHexString(blank));// \u3000
char comma = ',';// 全角逗号
System.out.println("\\u" + Integer.toHexString(comma));// \uff0c
String str = "a b" + blank + "c" + comma + "d";
System.out ...
执行如下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 serialNo between 712600001060 and 712600001061
) t ) ;
先说正确的sql,如下:
update act_code set status=3, ...
// 创建文件上传路径
public static void mkdir(String path) {
File fd = null;
try {
fd = new File(path);
if (!fd.exists()) {
fd.mkdirs();
}
} catch (Exception e) {
e.printStackTrace();
} finally {
fd = null;
}
}
经常会遇见在创建某一目录时
因为其上一层目录即父目录不存在而抛出异常(指定文件路径不存在)
jdk中 ...