码迷,mamicode.com
首页 >  
搜索关键字:jin ge jin qu hao    ( 3637个结果
Java语言实现MD5加密
package com.lc.igou.util;import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException;public class MD5Util { public static String ge...
分类:编程语言   时间:2015-05-03 20:38:17    阅读次数:107
Servlet 编程 http请求类型
HTTP协议的8种请求类型介绍 HTTP协议中共定义了八种方法或者叫“动作”来表明对Request-URI指定的资源的不同操作方式,具体介绍如下:OPTIONS:返回服务器针对特定资源所支持的HTTP请求方法。也可以利用向Web服务器发送'*'的请求来测试服务器的功能性。HEAD:向服务器索要与GE...
分类:Web程序   时间:2015-05-02 15:00:36    阅读次数:152
Android getResources的作用和须要注意点
今天做一个Android的文件管理器,里面用到非常多的地方用到了getResources。Drawable currentIcon = null;currentIcon = getResources().getDrawable(R.drawable.folder);currentIcon = ge....
分类:移动开发   时间:2015-05-01 18:33:54    阅读次数:192
Til the Cows Come Home(poj 2387 Dijkstra算法(单源最短路径))
Time Limit:1000MSMemory Limit:65536KTotal Submissions:32824Accepted:11098DescriptionBessie is out in the field and wants to get back to the barn to ge...
分类:编程语言   时间:2015-05-01 16:07:11    阅读次数:230
测试总结和组合测试条件 (笔记)
测试整数测试-eq-ne-le-ge-lt-gt字符测试==!=><-n-z文件测试-e-f-d-r-w-x-s组合测试条件-a与关系-o或关系!非关系if[$#-gt1-a$#-lt2]表示$#大于1与(即且)小于2摩根定律非(P且Q)=(非P)或(非Q)非(P或Q)=(非P)且(非Q)未完待续
分类:其他好文   时间:2015-04-30 20:26:47    阅读次数:152
CPP 1373 Easy as A+B(冒泡排序)
题目链接: http://cpp.zjut.edu.cn/ShowProblem.aspx?ShowID=1373 题面: Easy as A+B  Time Limit:1000MS  Memory Limit:32768K Description: These days, I am thinking about a question, how can I ge...
分类:编程语言   时间:2015-04-30 08:55:58    阅读次数:173
使用json解决 《三级联动》(省市县) 含地区编号
1:js 比查询数据库性能更高,减轻服务器压力。 2:采用灵活方案,此文章,值得参考!!! /*初始化加载所有省份*/ $(document).ready(function(){ getProvince(); }); /** 调用示例 省 <select id="seleCity" onchange="ge...
分类:Web程序   时间:2015-04-30 01:04:25    阅读次数:205
shell中if条件字符串的比较
if条件判断数字的比较-eq等于if[$a-eq11];thencommendfi-gt大于-lt小于-ge大于等于-lt小于等于字符串的比较==字符串的比较中间一定要有空格if[$a=‘yes‘];thencommendfi=和==等价,文件的判断-e文件是否存在-f是否为文件-d是否为目录-rwx是否是可读可写可执行的文件
分类:系统相关   时间:2015-04-29 20:00:11    阅读次数:171
图形开发之3D向量类(C#)
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace VectorDemo { /// /// 3D向量类 /// public class Vector3 { public float X { ge...
分类:Windows程序   时间:2015-04-29 11:52:48    阅读次数:165
12558 - Egyptian Fractions (HARD version)
#include #include #include #include using namespace std; typedef long long LL; const int maxn=10010; int maxd,t,tt; set sk; LL ans[maxn],v[maxn]; LL gcd(LL a,LL b){ return b?gcd(b, a%b):a; } LL ge...
分类:其他好文   时间:2015-04-28 09:48:39    阅读次数:105
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!