private void btnSave_Click(object sender, EventArgs e) //文件复制、保存方法 { #region 静态复制文件(写死) string desPath = @"c:\1\1.chm"; if (File.Exists(desPath)) ... ...
分类:
其他好文 时间:
2016-12-25 23:55:54
阅读次数:
362
如果要继承多个类的方法规范,用接口,因为抽象类只能继承一个; 如果要共享一个方法体内容,用抽象类; ...
分类:
Web程序 时间:
2016-12-25 21:03:28
阅读次数:
170
首先停止 Apache Server service httpd stop 解除安裝 PHP 5.1.x 的版本 yum remove php-* 安裝 PHP 5.3 yum install php53 yum install php53-cli yum install php53-common ...
分类:
Web程序 时间:
2016-12-25 13:54:41
阅读次数:
163
<script language="javascript" type="text/javascript"> function Arabia_to_Chinese(Num) { for (i = Num.length - 1; i >= 0; i--) { Num = Num.replace(",", ...
分类:
Web程序 时间:
2016-12-24 19:45:13
阅读次数:
341
一、字符串类型:String类型 定义一个字符串 字符串之间的拼接: 关于字符串常用的一些操作: 通过sc.indexOf()获取数据示例: 随机数字或字母或字母+数字混合验证码 二、时间类型:Date型 获取时间: 两种方法:1.单独获取,最后拼接 2、对Calenar格式化 ...
分类:
编程语言 时间:
2016-12-24 02:37:02
阅读次数:
253
function GetQueryString(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null)... ...
分类:
Web程序 时间:
2016-12-23 13:53:57
阅读次数:
137
智能车 self driving car + 强化学习 reinforcement learning + 神经网络 模拟 https://github.com/MorvanZhou/my_research/tree/master/self_driving_research_DQN Reinforce ...
分类:
其他好文 时间:
2016-12-23 09:43:37
阅读次数:
207
Scan through array and DP: We iterate through each word and see if it can be formed by using other words. The subproblem is Word Break I. But it is a ...
分类:
其他好文 时间:
2016-12-23 07:48:32
阅读次数:
153
1. 引言 相比于Java而言,基于C#的开源爬虫就少了很多。入行这么多年也从未接触过爬虫。出于兴趣今天给大家介绍一个C# 的爬虫工具Abot. 需要使用可以通过Nuget获取。Abot本身就支持多线程的爬取, 内部使用CsQuery来解析爬取到的Html文档。熟悉jQuery的同学肯定能快速上手C ...
分类:
其他好文 时间:
2016-12-22 19:59:03
阅读次数:
234