上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 41 下一页

2013年4月17日

SQL: 随机从数据库取值

摘要: select ArticleId, Title,CreateDate from (SELECT top 2 * FROM [Article] Where ArticleId <10 Order By NewId() ) AS AUNION select ArticleId,Title,CreateDate from (SELECT top 8 * FROM [Article] Where ArticleId >10 Order By NewId() ) AS B//*********************************************************** 阅读全文

posted @ 2013-04-17 11:42 水行者 阅读(216) 评论(0) 推荐(0) 编辑

2013年4月11日

汉字转换为拼音

摘要: 1先引用ChnCharInfo.dll(这个可以在网上下到,如果实在下载不到!直接Q,我发给你)public class ChineseToPinYins { public static Dictionary<int, string> ChineseToPinYin(Dictionary<int, string> chinese) { Dictionary<int, string> newChinese = new Dictionary<int, string>(); int xuhao = 0; ... 阅读全文

posted @ 2013-04-11 15:52 水行者 阅读(232) 评论(0) 推荐(0) 编辑

2013年4月3日

图片下载(直接通过网站url 下载图片)

摘要: /// <summary> /// 图片下载 /// </summary> /// <param name="imageList"></param> /// <param name="FileDir"></param> /// <returns></returns> private bool DownloadImage(List<string> imageList, string FileDir) { bool result = true; try 阅读全文

posted @ 2013-04-03 11:33 水行者 阅读(522) 评论(0) 推荐(0) 编辑

2013年4月2日

正则表达式语法

摘要: 表达式匹配/^\s*$/匹配空行。/\d{2}-\d{5}/验证由两位数字、一个连字符再加 5 位数字组成的 ID 号。/<\s*(\S+)(\s[^>]*)?>[\s\S]*<\s*\/\1\s*>/匹配 HTML 标记。下表包含了元字符的完整列表以及它们在正则表达式上下文中的行为:字符说明\将下一字符标记为特殊字符、文本、反向引用或八进制转义符。例如,“n”匹配字符“n”。“\n”匹配换行符。序列“\\”匹配“\”,“\(”匹配“(”。^匹配输入字符串开始的位置。如果设置了 RegExp 对象的 Multiline 属性,^ 还会与“\n”或“\r”之后的位置 阅读全文

posted @ 2013-04-02 10:47 水行者 阅读(189) 评论(0) 推荐(0) 编辑

2013年4月1日

获取当前程序的相当路径

摘要: static string str = System.Environment.CurrentDirectory; 阅读全文

posted @ 2013-04-01 15:14 水行者 阅读(103) 评论(0) 推荐(0) 编辑

2013年3月28日

网页信息抓取

摘要: //创建http链接 var request = (HttpWebRequest)WebRequest.Create("http://www.cnblogs.com/huangxincheng/archive/2012/03/14/2395279.html"); request.Timeout = 1000 * 5; //5s过期 var response = (HttpWebResponse)request.GetResponse(); Stream stream = response.GetResponseStream(); StreamReader sr = new 阅读全文

posted @ 2013-03-28 17:51 水行者 阅读(135) 评论(0) 推荐(0) 编辑

2013年3月26日

经典SQL语句大全 收集别人的主要是为了学习的时候查找方便

摘要: 一、基础1、说明:创建数据库CREATE DATABASE database-name 2、说明:删除数据库drop database dbname3、说明:备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'testBack', 'c:\mssql7backup\MyNwind_1.dat'--- 开始 备份BACKUP DATABASE pubs TO testBack 4、说明:创建新表create table tabname(col1 type1 [ 阅读全文

posted @ 2013-03-26 10:22 水行者 阅读(246) 评论(0) 推荐(0) 编辑

2013年3月21日

C#遍历指定文件夹中的所有文件及操作

摘要: C#遍历指定文件夹中的所有文件 DirectoryInfo TheFolder=new DirectoryInfo(folderFullName);//遍历文件夹foreach(DirectoryInfo NextFolder in TheFolder.GetDirectories()) this.listBox1.Items.Add(NextFolder.Name);//遍历文件foreach(FileInfo NextFile in TheFolder.GetFiles()) this.listBox2.Items.Add(NextFile.Name); ================= 阅读全文

posted @ 2013-03-21 10:12 水行者 阅读(332) 评论(0) 推荐(0) 编辑

2013年3月15日

扩展方法定义

摘要: http://www.cnblogs.com/suger/archive/2012/05/13/2498248.html 阅读全文

posted @ 2013-03-15 14:09 水行者 阅读(121) 评论(0) 推荐(0) 编辑

线程的暂停、恢复和终止 --收集别人的博文(只为学习)

摘要: usingSystem;usingSystem.Threading;classThreadTest{//工作线程的方法publicstaticvoidWorkerThreadMethod1(){//获得当前正在执行的线程对象Threadw1=Thread.CurrentThread;w1.Name="工人1号正在工作中";for(inti=1;i<10;i++){Thread.Sleep(400);Console.WriteLine(w1.Name);if(i==4){Console.WriteLine("累死我了,不想做了");//终止线程w1. 阅读全文

posted @ 2013-03-15 10:55 水行者 阅读(180) 评论(0) 推荐(0) 编辑

上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 41 下一页

导航