牛骨文教育服务平台(让学习变的简单)
博客笔记

			
				采用shiro实现登录认证与权限授权管理
采用shiro实现登录认证与权限授权管理 2016-06-24
Shiro 是Shiro 是一个 Apache 下的一开源项目项目,旨在简化身份验证和授权。 本文中记录的是一次使用shiro实现登录认证与权限授权的过程。 本文中
31
2015-05
LeetCode之ThreeSum 2015-05-31
题目: Given an array S of n integers, are there elements a,b,c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: • Elements in a triple
07
2017-05
15 three sum 用到Arrays.sort 和 Arrays.asList()的方法 2017-05-07
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: The solution
30
2014-10
【LeetCode】3Sum Closest 解题报告 2014-10-30
【题目】 Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that eac
28
2017-03
Four Sum || LeetCode-18 2017-03-28
Four Sum || LeetCode-18 Problem link:https://leetcode.com/problems/4sum/#/description Given an array S of n integers, are there elements a, b, c, and d in S such that a + b +
17
2017-02
鼠标全局钩子 2017-02-17
转自:http://www.tuicool.com/articles/BfAZna 有问题:在dllmain.h文件中加上extern HINSTANCE glhInstance;不然它总是找不到glhInstance Windows系统是建立在事件驱动
03
2016-05
全局钩子详解 2016-05-03
监控程序的实现       我们发现一些木马或其他病毒程序常常会将我们的键盘或鼠标的操作消息记录下来然后再将它发到他们指定的地方以实现
14
2017-08
VC实现的全局键盘钩子 2017-08-14
键盘钩子的功能就是监视系统按键动作,这是一种很有用的技术,在一些工程项目中,有监视人员操作动作的需求,便于定位故障原因。也可以用于
16
2007-03
Windows Hook机制(转贴一) 2007-03-16
博主的新Blog地址:http://www.brantchen.com 欢迎访问:) 最近想写个监视系统的小软件,需要Windows Hook的知识,所以会陆续贴几个关于Hook的文章做参考。

			
				钩子编程(HOOK) 安装系统全局钩子 (3)
钩子编程(HOOK) 安装系统全局钩子 (3) 2014-05-15
摘要:全局钩子,钩子一词多用于计算机编程中,英文叫hook,指利用api来提前拦截并处理windows消息的一种技术。如键盘钩子,许多木马都有这东西,