摘要:
http://msdn.microsoft.com/en-us/library/ms731758%28v=vs.100%29.aspx 阅读全文
摘要:
jQuery获取Select选择的Text和Value: 语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text();//获取Select选择的Text3. var checkValue=$("#select_id").val();//获取Select选择的Value4. var checkI 阅读全文
摘要:
web.config C#中使用自定义配置<configuration><configSections> //配置节声明区域,包含配置节和命名空间声明<section> //配置节声明<sectionGroup/> //定义配置节组</section> //配置节组中的配置节声明</configSections><appSettings/> //预定义配置节<Custom element for configuration section> //配置节设置区域</configuration&g 阅读全文
摘要:
public static void DoRAR(string rarFile, string toRarDirecotry, string RARProgramFilePath) { string arguments = @"a -m0 -ep1 ""{0}"" ""{1}"""; arguments = string.Format( arguments, rarFile, toRarDirecotry ); var proc = Process.Start(new ProcessStartI 阅读全文
摘要:
出自:http://www.blogjava.net/conans/articles/331384.html方便自己查阅。publicclassHashAlgorithms{/***加法hash**@paramkey*字符串*@paramprime*一个质数*@returnhash结果*/publicstaticintadditiveHash(Stringkey,intprime){inthash,i;for(hash=key.length(),i=0;i<key.length();i++)hash+=key.charAt(i);return(hash%prime);}/***旋转has 阅读全文
摘要:
引用原文:http://www.cnblogs.com/xyz168/archive/2011/11/11/2245718.html本节的主要内容:1、通过代理类的方式调用服务操作。2、通过通道的方式调用服务操作。3、代码下载一、通过代理类的方式调用服务操作(两种方式添加代理类)1.手动编写代理类,如下:客户端契约:View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using System.ServiceModel; 7 na.. 阅读全文
摘要:
public class BloomFilter { //种子个数 private int _seedcount ; //内存大小,单位bits private int _memsize; //不同哈希函数的种子,一般应取质数 private static List<int> seeds = new List<int>{ 5, 37, 73, 31, 17, 47, 67, 29, 13, 19, 89, 43, 7, 53, 41, 61, 23, 71, 11, 79, 83, 59, 97 }; private BitArray bits; //哈希函数对象 pr 阅读全文
摘要:
布隆过滤器的原理就不介绍了,到网上搜搜会找到的。这里说一下最佳的选取参数。P是需要的误差率,n是读取的数据条数。系统首先要计算需要的内存大小m bits:再由m,n得到hash function的个数:如果误差率在万分之一,n是一亿条,则需要19亿比特内存,13个hash函数。下面是我参考别人的布隆过滤器,修改的。。进攻参考。。public class BloomFilter { // BitArray 初始分配2^29个bit private static int DEFAULT_SIZE = 1 << 30; //不同哈希函数的种子,一般应取质数 private static 阅读全文
摘要:
javascript里面<script type="text/javascript"> var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_initializeRequest(downloadfile);//触发函数 function downloadfile(filepath) { var iframe = document.createElement("iframe"); iframe.src = "GenerateFile.aspx?filepath 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Configuration;using System.Data;using System.Diagnostics;using System.Globalization;using System.Linq;using System.Net;using System.Net.Mail;using System.ServiceProcess;using System.Text;using System.Timers;using 阅读全文