上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 注意设计表字段不能用bor xor and band eq neq lt gt lte gte shl shr ushr 阅读全文
posted @ 2019-01-28 09:59 liw66 阅读(429) 评论(0) 推荐(0) 编辑
摘要: //调用说明 配置文件里必须包含节点 否则项目无法启动 @Value("${systemPath.dossier}")private String dossierPath; 阅读全文
posted @ 2019-01-18 10:51 liw66 阅读(5254) 评论(0) 推荐(0) 编辑
摘要: String tel = "18304072984"; // 括号表示组,被替换的部分$n表示第n组的内容 tel = tel.replaceAll("(\\d{3})\\d{4}(\\d{4})", "$1****$2"); System.out.print(tel); // output: 18 阅读全文
posted @ 2019-01-16 17:49 liw66 阅读(2264) 评论(0) 推荐(0) 编辑
摘要: springboot 1.5.9文件上传大小限制spring:http:multipart:maxFileSize:50MbmaxRequestSize:50Mb springboot 2.0文件上传大小限制spring:servlet:multipart:maxFileSize:50MbmaxRe 阅读全文
posted @ 2019-01-16 17:46 liw66 阅读(546) 评论(0) 推荐(0) 编辑
摘要: onclick="laydate({istime: true, format: 'YYYY-MM-DD',choose:checkDate});" //回调函数内容 function checkDate() { } 阅读全文
posted @ 2019-01-16 17:40 liw66 阅读(3316) 评论(0) 推荐(0) 编辑
摘要: //扩展2个String方法 /* * 删除开头字符串 */ public static String trimstart(String inStr, String prefix) { if (inStr.startsWith(prefix)) { return (inStr.substring(p 阅读全文
posted @ 2019-01-07 10:44 liw66 阅读(7465) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { Integer i = 0; printClassMessage(i); } private static void printClassMessage(Object obj) { Class c = obj.getClass(); ... 阅读全文
posted @ 2019-01-02 17:18 liw66 阅读(134) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { String word="天地玄黄宇宙洪荒" + "日月盈昃辰宿列张" + "寒来暑往秋收冬藏" + ... 阅读全文
posted @ 2019-01-02 16:46 liw66 阅读(2772) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { String t1="2018-08-01"; t1 = t1.replaceAll("(\\d{4})\\-(\\d{2})\\-\\d{2}", "$1-$2-01"); //String t2="2024-11-30"; ... 阅读全文
posted @ 2019-01-02 16:31 liw66 阅读(819) 评论(0) 推荐(0) 编辑
摘要: /** * 截取视频第0帧的图片 */public static void videoImage(String filePath, String fileName,int widthdist, int heightdist) throws FrameGrabber.Exception { File 阅读全文
posted @ 2018-12-28 13:55 liw66 阅读(1498) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页