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
HTTP协议的8种请求类型介绍 HTTP协议中共定义了八种方法或者叫“动作”来表明对Request-URI指定的资源的不同操作方式,具体介绍如下:OPTIONS:返回服务器针对特定资源所支持的HTTP请求方法。也可以利用向Web服务器发送'*'的请求来测试服务器的功能性。HEAD:向服务器索要与GE...
分类:
Web程序 时间:
2015-05-02 15:00:36
阅读次数:
152
今天做一个Android的文件管理器,里面用到非常多的地方用到了getResources。Drawable currentIcon = null;currentIcon = getResources().getDrawable(R.drawable.folder);currentIcon = ge....
分类:
移动开发 时间:
2015-05-01 18:33:54
阅读次数:
192
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
题目链接: 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
1:js 比查询数据库性能更高,减轻服务器压力。
2:采用灵活方案,此文章,值得参考!!!
/*初始化加载所有省份*/
$(document).ready(function(){
getProvince();
});
/**
调用示例
省
<select id="seleCity" onchange="ge...
分类:
Web程序 时间:
2015-04-30 01:04:25
阅读次数:
205
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace VectorDemo
{
///
/// 3D向量类
///
public class Vector3
{
public float X { ge...
#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