会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
柒陆零柒伍伍柒玖零
博客园
首页
新随笔
联系
订阅
管理
2018年6月19日
Oracle数据库-建库、建表空间,建用户
摘要: 1、选择的数据库目录 *\product\10.1.0\oradata\目录下(*表示oracle的安装目录) 2、创建表空间 格式: create tablespace 表间名 datafile '数据文件名' size 表空间大小;、 SQL> create tablespace 数据库名 da
阅读全文
posted @ 2018-06-19 14:41 柒陆零柒伍伍柒玖零
阅读(145)
评论(0)
推荐(0)
2018年2月5日
JS中几种遍历方式
摘要: $.each(lists, function(index,element) { ... }) $(selector).each(function(index,element) { ... }) for(var i=0; i<length; i++) { ... }
阅读全文
posted @ 2018-02-05 08:51 柒陆零柒伍伍柒玖零
阅读(121)
评论(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 柒陆零柒伍伍柒玖零
阅读(113)
评论(0)
推荐(0)
JavaWeb中GET请求url传参中文乱码问题
摘要: 方式一: 修改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 柒陆零柒伍伍柒玖零
阅读(581)
评论(0)
推荐(0)
常用的ajax方式
摘要: $.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 柒陆零柒伍伍柒玖零
阅读(108)
评论(0)
推荐(0)
table中td内容过长自动换行
摘要: table { table-layout:fixed; WORD-BREAK:break-all;}
阅读全文
posted @ 2018-02-05 08:34 柒陆零柒伍伍柒玖零
阅读(1666)
评论(0)
推荐(0)
2017年12月4日
上传与下载文件加密
摘要: 对称加密算法使用详解 1、加密算法类型 AES DES 3DES (黑色字体的为常用算法) 2、具体使用 2.1 DES算法 2.2 AES算法
阅读全文
posted @ 2017-12-04 17:48 柒陆零柒伍伍柒玖零
阅读(1969)
评论(0)
推荐(0)
2017年11月16日
操作excel表格数据
摘要: 读取excel表格中数据 修改excel表格中数据 删除excel表格中数据 替换excel表格中数据
阅读全文
posted @ 2017-11-16 17:31 柒陆零柒伍伍柒玖零
阅读(273)
评论(0)
推荐(0)
2017年10月26日
td长度固定,内容过长,用固定长度
摘要: 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 柒陆零柒伍伍柒玖零
阅读(794)
评论(0)
推荐(0)
2017年10月9日
idea 快捷键
摘要: 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 柒陆零柒伍伍柒玖零
阅读(138)
评论(0)
推荐(0)
下一页
公告