摘要: public void testWordToPDF(HttpServletResponse response) throws Exception { String FILE_NAME = "E:\\1111.docx"; InputStream inputStream = new FileInput 阅读全文 posted @ 2023-04-26 17:40 茫无所知 阅读(396) 评论(0) 推荐(0) 编辑 2023...
茫无所知 <2025年1月> 日一二三四五六 2930311234 567891011 12131415161718 19202122232425 2627282930311 2345678 昵称:茫无所知 园龄:6年7个月 粉丝:3 关注:7 +加关注 阅读排行榜 1. easyExcel生成excel并导出自定义样式(二)添加复杂表头(7540) 2. SVN checckout 失败:Error: REPORT request on '/svn/ys/...
titleEntityList.add(newFileTitleEntity("name", "姓名")); titleEntityList.add(newFileTitleEntity("idNumber", "证件号码")); titleEntityList.add(newFileTitleEntity("projectDistrict", "参与项目行政区划")); titleEntityList.add(newFileTitleEntity("nationality", "民族")); titleEntityList.add(newF...
避免5.(+等价于 {0,1}) (^(0){1}$) 1个0 (^[0-9]\.[0-9]([0-9]{1,2})?$) [0-9]\.表示0开头的小数,\.[0-9]小数点后必须跟1个数,([0-9]{1,2})?允许保留最少1位,最多两位(?等价于 {1,}) 5位整数带两位小数 ^([1-9]\d{0,4}|0)(\.\d{1,2})?$ 知识点: ()...
public static Long createID() { Random rand = new Random(); StringBuffer sb = new StringBuffer(); //等待1秒,指定根据时间毫秒数获取13位不重复数字 // try { // Thread.sleep(1); // } catch (InterruptedException e) { // e.printStackTrace(); ...
--茫无所知手机端下载文件及创建文件夹 //检查文件夹是否已存在 var relativePath = "_downloads/zipFile"; plus.io.resolveLocalFileSystemURL(relativePath, function(entry) { console.log("文件夹存在,地址=" + relativePath); //本地相对路径("_downloads/logo.jpg")转成SD卡绝对路径("/storage/emulated...
publicclassExcelRowColorHandlerimplementsCellWriteHandler {privatefinalInteger columnIndex;privatefinalSet<Integer>redRowIndex;privatefinalSet<Integer>yellowRowIndex;privatefinalSet<Integer>greenRowIndex;publicExcelRowColorHandler(Integer columnIndex, Set<Integer> redRowIndex, Set<Integer> yellowRowIndex, Set<...
public String createRandom(int n){ StringBuffer str = new StringBuffer(); for(int i=0;i<n;i++){ if(i==0 && n>1){ str.append(new Random().nextInt(9)+1); }else{ str.append(new Random().nextInt(10)); } } return str.toString(); ...
事件ApplicationEvent 是所有事件对象的父类,也就是说当某个业务发生改变 Spring 可以发出一个事件出来(当然这边可能是具体的某一个事件,Spring 中常用的事件请看第二节介绍)。 事件监听 ApplicationListener,也就是观察者,继承自 JDK 的 EventListener,该类中只有一个方法 onApplicationEvent。当监听的事件发生后该方...
告警发送邮件:需要再zabbix用户下填写相应的邮箱地址。 脚本内容,监控rabbitmq指定交换机下的队列数量: #!/bin/bash # 定义RabbitMQ的API endpoint RABBITMQ_ENDPOINT="http://localhost:15672/api" # 定义exchange的名字 EXCHANGE_NAME="jhjnm" # 发送HTTP GET请求获取所有的队列信息-i选项会显示响应头信息,-s选...