摘要: 1、选择的数据库目录 *\product\10.1.0\oradata\目录下(*表示oracle的安装目录) 2、创建表空间 格式: create tablespace 表间名 datafile '数据文件名' size 表空间大小;、 SQL> create tablespace 数据库名 da 阅读全文
posted @ 2018-06-19 14:41 柒陆零柒伍伍柒玖零 阅读(135) 评论(0) 推荐(0) 编辑
摘要: $.each(lists, function(index,element) { ... }) $(selector).each(function(index,element) { ... }) for(var i=0; i<length; i++) { ... } 阅读全文
posted @ 2018-02-05 08:51 柒陆零柒伍伍柒玖零 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 数量: "amount": /^[1-9]\d*$/, 价格: "price": /(^[1-9]\d*(\.\d{1,2})?$)|(^0(\.\d{1,2})?$)/, 邮箱: "email":/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/, 手机 阅读全文
posted @ 2018-02-05 08:51 柒陆零柒伍伍柒玖零 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 方式一: 修改tomcat配置文件 ==> conf/server.xml ==> 添加“URIEncoding="utf-8"” <Connector port="8082" protocol="HTTP/1.1" URIEncoding="utf-8" > 方式二: 前台: url = enco 阅读全文
posted @ 2018-02-05 08:46 柒陆零柒伍伍柒玖零 阅读(519) 评论(0) 推荐(0) 编辑
摘要: $.ajax({ type: "post", dataType: "json", url: '', data: data, success: function (data) { ... } }); $.get(url, data,function(data){ .... }); $.post(url , data, function(data){ ... 阅读全文
posted @ 2018-02-05 08:45 柒陆零柒伍伍柒玖零 阅读(106) 评论(0) 推荐(0) 编辑
摘要: table { table-layout:fixed; WORD-BREAK:break-all;} 阅读全文
posted @ 2018-02-05 08:34 柒陆零柒伍伍柒玖零 阅读(1656) 评论(0) 推荐(0) 编辑
摘要: 对称加密算法使用详解 1、加密算法类型 AES DES 3DES (黑色字体的为常用算法) 2、具体使用 2.1 DES算法 2.2 AES算法 阅读全文
posted @ 2017-12-04 17:48 柒陆零柒伍伍柒玖零 阅读(1959) 评论(0) 推荐(0) 编辑
摘要: 读取excel表格中数据 修改excel表格中数据 删除excel表格中数据 替换excel表格中数据 阅读全文
posted @ 2017-11-16 17:31 柒陆零柒伍伍柒玖零 阅读(245) 评论(0) 推荐(0) 编辑
摘要: table { table-layout: fixed; } table 长度要明确 table tr td { text-overflow: ellipsis; /* for IE */ -moz-text-overflow: ellipsis; /* for Firefox,mozilla */ overflow: hidden; ... 阅读全文
posted @ 2017-10-26 13:37 柒陆零柒伍伍柒玖零 阅读(786) 评论(0) 推荐(0) 编辑
摘要: ctrl+shift+space(new 后面自动提示) ctrl+shift+/ (注释) itar后面tab (for循环) it后面ctrl+j(很多智能代码生成) Alt+Insert(自动生成构造函数,get,set方法) ctrl+alt+t(自动生成try,catch) alt+ent 阅读全文
posted @ 2017-10-09 08:48 柒陆零柒伍伍柒玖零 阅读(125) 评论(0) 推荐(0) 编辑