摘要:
注意设计表字段不能用bor xor and band eq neq lt gt lte gte shl shr ushr 阅读全文
摘要:
//调用说明 配置文件里必须包含节点 否则项目无法启动 @Value("${systemPath.dossier}")private String dossierPath; 阅读全文
摘要:
String tel = "18304072984"; // 括号表示组,被替换的部分$n表示第n组的内容 tel = tel.replaceAll("(\\d{3})\\d{4}(\\d{4})", "$1****$2"); System.out.print(tel); // output: 18 阅读全文
摘要:
springboot 1.5.9文件上传大小限制spring:http:multipart:maxFileSize:50MbmaxRequestSize:50Mb springboot 2.0文件上传大小限制spring:servlet:multipart:maxFileSize:50MbmaxRe 阅读全文
摘要:
onclick="laydate({istime: true, format: 'YYYY-MM-DD',choose:checkDate});" //回调函数内容 function checkDate() { } 阅读全文
摘要:
//扩展2个String方法 /* * 删除开头字符串 */ public static String trimstart(String inStr, String prefix) { if (inStr.startsWith(prefix)) { return (inStr.substring(p 阅读全文
摘要:
public static void main(String[] args) { Integer i = 0; printClassMessage(i); } private static void printClassMessage(Object obj) { Class c = obj.getClass(); ... 阅读全文
摘要:
public static void main(String[] args) { String word="天地玄黄宇宙洪荒" + "日月盈昃辰宿列张" + "寒来暑往秋收冬藏" + ... 阅读全文
摘要:
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"; ... 阅读全文
摘要:
/** * 截取视频第0帧的图片 */public static void videoImage(String filePath, String fileName,int widthdist, int heightdist) throws FrameGrabber.Exception { File 阅读全文