上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页
摘要: 一、由于导入数据需要有条件,避免点击上传直接就弹出附件选择 html代码 <button type="button" class="layui-btn" id="check"> <i class="layui-icon"></i>导入</button> <button hidden type="b 阅读全文
posted @ 2021-08-16 14:01 唏嘘- 阅读(326) 评论(0) 推荐(0) 编辑
摘要: //取到html元素中所设置的属性 value的值, //不能获取动态的如input type="text" 的文本框手动输入的值 $("#Id").attr("value", ""); //针对text,hidden可输入的文本框的value值 $("#Id").val(""); //重置表单所有 阅读全文
posted @ 2021-08-16 11:59 唏嘘- 阅读(1427) 评论(0) 推荐(0) 编辑
摘要: 一、数组转集合 //数组转集合 String [] strs = {"12", "13", "14"}; List<String> stringList = Arrays.asList(strs); // stringList.add("16"); 数组转成的集合,不可添加 //asList的返回对 阅读全文
posted @ 2021-08-16 11:20 唏嘘- 阅读(1731) 评论(0) 推荐(0) 编辑
摘要: 一、使用模板引擎至少需要四步走: 1.定义模板引擎 2.创建数据模型 3.填充数据到模板中 4.输出文档 二: 1、定义模板: 创建word文档,另存xml 文件(需要注意,存为 2003xml 文件,要不以后生成的word可能会出现office打不开的情况) 2、 直接打开 格式会特变乱,此时需要 阅读全文
posted @ 2021-08-13 16:10 唏嘘- 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 1、标签含义 <w:tbl> 表格开始标志 <w:tblPr>表格属性 <w:tblW w:w=“0” w:type=“auto”/>这个type=还可以使用“pct”根据窗口调整 <w:jc w:val=“center”/>表格居中 <w:tblBorders>边框线 <w:top w:val=“ 阅读全文
posted @ 2021-08-13 14:53 唏嘘- 阅读(73) 评论(0) 推荐(0) 编辑
摘要: FTL指令常用标签及语法 注意:使用freemaker,要求所有标签必须闭合,否则会导致freemaker无法解析。 freemaker注释:<#-- 注释内容 -->格式部分,不会输出 基础语法 1、字符输出 ${emp.name?if_exists} // 变量存在,输出该变量,否则不输出 ${ 阅读全文
posted @ 2021-08-13 14:02 唏嘘- 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 一:直接定义函数进行处理 public static String escapeStr(String str) { if (StringUtils.isEmpty(str)) { str = str.replaceAll("\\\\", "\\\\\\\\"); str = str.replaceA 阅读全文
posted @ 2021-08-13 11:52 唏嘘- 阅读(1824) 评论(0) 推荐(0) 编辑
摘要: 1、问题 org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [xxx] to the cache for web application [/xxx] because there was 阅读全文
posted @ 2021-08-09 14:56 唏嘘- 阅读(2887) 评论(0) 推荐(0) 编辑
摘要: 1、查找工作空间的路径 select * from dba_data_files; 2、删除用户,及级联关系也删除掉 drop user 用户名 cascade; 3、删除表空间,及对应的表空间文件也删除掉 drop tablespace 表空间名including contents and dat 阅读全文
posted @ 2021-08-06 14:06 唏嘘- 阅读(1402) 评论(0) 推荐(0) 编辑
摘要: 1、删除用户 drop user user_name cascade; 如果提示 ORA-01940提示 “无法删除当前已连接用户” (1)锁定用户 alter user XXX account lock; (2)查询当前进程号(注意用户名一定要大写) SELECT * FROM V$SESSION 阅读全文
posted @ 2021-08-06 09:17 唏嘘- 阅读(158) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页