上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: 数据加密:用公钥加密,只有用私钥解开,因为私钥只有你自己有,所以他保证了数据不能被别人看到签名:用私钥加密,只能用公钥解密,任何人都可以用公钥验证。因为私钥只有你自己有,所以它可以保证数据只能是你发出的,不可能有别人发出,除非你得私钥丢失或被第三方破解出来 数字签名起不到加密作用,但可以确定是谁发出 阅读全文
posted @ 2017-03-16 12:34 Kevin_Zhou_9 阅读(1746) 评论(0) 推荐(0) 编辑
摘要: /** * 对象转数组 * @param obj * @return */ public byte[] toByteArray(Object obj) { byte[] bytes = null; ByteArrayOutputStream bos = new ByteArrayOutputStre 阅读全文
posted @ 2017-03-14 10:22 Kevin_Zhou_9 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 查看锁表进程SQL语句1: select sess.sid, sess.serial#, lo.oracle_username, lo.os_user_name, ao.object_name, lo.locked_mode from v$locked_object lo, dba_objects 阅读全文
posted @ 2017-03-13 15:19 Kevin_Zhou_9 阅读(4423) 评论(0) 推荐(0) 编辑
摘要: 对账流水 drop sequence COMMON_SEQ;-- Create sequence create sequence COMMON_SEQminvalue 1maxvalue 999999999start with 1increment by 1cache 20cycle; 我们的序列的 阅读全文
posted @ 2017-03-04 12:57 Kevin_Zhou_9 阅读(2272) 评论(0) 推荐(0) 编辑
摘要: 环境变量配置以下两个变量: LANG=zh_CN.GBK NLS_LANG=SIMPLIFIED CHINESE_CHINA.ZHS16GBK 阅读全文
posted @ 2017-03-04 12:50 Kevin_Zhou_9 阅读(228) 评论(0) 推荐(0) 编辑
摘要: // ShuffleTest.java import java.util.*; public class ShuffleTest { public static void main(String[] args) { List<Integer> list = new ArrayList<Integer 阅读全文
posted @ 2016-11-10 15:15 Kevin_Zhou_9 阅读(300) 评论(0) 推荐(0) 编辑
摘要: /** * 版本信息 * * @类名 :Meichat_version * @作者 :kevin * @创建时间 :2016-10-2下午8:25:13 */public class Meichat_version extends BasicServlet { private static fina 阅读全文
posted @ 2016-11-02 21:38 Kevin_Zhou_9 阅读(402) 评论(0) 推荐(0) 编辑
摘要: getData("name"); //接收url传送参数objfunction getData(data){ //console.log("URL "+window.location.search); var reg = new RegExp("(^|&)"+ data +"=([^&]*)(&|$ 阅读全文
posted @ 2016-11-02 15:55 Kevin_Zhou_9 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 身份证生成器: http://www.shurufa8.cn/shenfenzheng.html,学习使用 阅读全文
posted @ 2016-10-27 16:00 Kevin_Zhou_9 阅读(48) 评论(0) 推荐(0) 编辑
摘要: var str="1,1,2,2,3,“; str = str.substr(0,str.length-1); console 阅读全文
posted @ 2016-10-20 20:49 Kevin_Zhou_9 阅读(2789) 评论(2) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页