码迷,mamicode.com
首页 >  
搜索关键字:tac    ( 5584个结果
ThreadPoolExecutor线程池
1 package unit; 2 3 import java.util.concurrent.ArrayBlockingQueue; 4 import java.util.concurrent.ThreadPoolExecutor; 5 import java.util.concurrent.Ti... ...
分类:编程语言   时间:2017-12-13 19:44:19    阅读次数:123
AES/CBC/PKCS5Padding对称加密
1 package unit; 2 import javax.crypto.Cipher; 3 import javax.crypto.spec.IvParameterSpec; 4 import javax.crypto.spec.SecretKeySpec; 5 6 import org.apa... ...
分类:其他好文   时间:2017-12-13 14:28:45    阅读次数:139
仿京东快报向上滚动
<!doctype html><html><head><meta charset="utf-8"><title></title></head> <body><script src="http://code.jquery.com/jquery-1.11.0.min.js"></script><div ...
分类:其他好文   时间:2017-12-13 11:29:44    阅读次数:176
exp分析
1 from pwn import* 2 3 local =1 4 debug = 1 5 6 if local: 7 p = process('./pwn1') 8 else: 9 p = remote("127.0.0.1",8080) 10 11 #context.log_level = 'd... ...
分类:其他好文   时间:2017-12-13 00:02:05    阅读次数:233
java的动态代理
一 前言 在学习spring时候我们知道spring两大思想是IoC和AOP,IoC的依赖注入就不用说了,而对于Spring的核心AOP来说,其底层原理其实就是java的动态代理机制。 在java的动态代理机制中,有两个重要的类或接口,一个是InvocationHandler(interface), ...
分类:编程语言   时间:2017-12-12 13:53:46    阅读次数:220
银行家算法-安全序列全列出实现
#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#define file_in freope... ...
分类:编程语言   时间:2017-12-11 22:15:46    阅读次数:298
NPOI 将excel转换为datatable或者将datatable转换为excel
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using NPOI.SS.UserModel; using NPO... ...
分类:其他好文   时间:2017-12-11 18:53:02    阅读次数:328
怎样写SQL语句可以提高数据库的性能
1、首先要搞明白什么叫执行计划? 执行计划是数据库根据SQL语句和相关表的统计信息作出的一个查询方案,这个方案是由查询优化器自动分析产生的,比如一条SQL语句如果用来从一个10万条记录的表中查1条记录,那查询优化器会选择“索引查找”方式,如果该表进行了归档,当前只剩下5000条记录了,那查询优化器就 ...
分类:数据库   时间:2017-12-11 14:29:20    阅读次数:239
安卓入门常见架构之mvc
Android基础——框架模式MVC在安卓中的实践 本篇文章包含以下内容: MVC的介绍 MVC的实践 MVC的介绍 MVC (Model View Controller),是模型(model)视图(view)控制器(controller)的缩写,一种软件设计模式,用于组织代码用一种功能模块和数据模 ...
分类:移动开发   时间:2017-12-10 20:22:10    阅读次数:259
HttpClient跨域请求post
service层 @Override public Map<String, Object> selectCurrentProgress(String branchesId,String businessId) throws Exception { //用于结束返回映射结果 Map<String ,O ...
分类:Web程序   时间:2017-12-10 19:33:05    阅读次数:166
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!