摘要:
1. 引用命名空间 using System.Runtime.InteropServices; using System.Management; 2. 取机器名public string GetHostName(){ return System.Net.Dns.GetHostName(... 阅读全文
摘要:
html中写正则表达式时,为了避免分歧,最好不用引号,用/^开头,$/结束正则表达式用于字符串处理,表单验证等场合,实用高效,但用到时总是不太把握,以致往往要上网查一番。我将一些常用的表达式收藏在这里,作备忘之用。本贴随时会更新。 匹配中文字符的正则表达式: [\u4e00-\u9fa5] 匹配双字... 阅读全文
摘要:
发送邮件的邮箱要先启用SMTP,否则不能发送using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO... 阅读全文
摘要:
WebRequest 对象的使用// 待请求的地址string url = "http://www.cnblogs.com"; // 创建 WebRequest 对象,WebRequest 是抽象类,定义了请求的规定,// 可以用于各种请求,例如:Http, Ftp 等等。/... 阅读全文
摘要:
使用的是WebRequest类,在这以http://novel.hongxiu.com/a/1036665/10425842.html为例。代码如下:using System;using System.Collections.Generic;using System.ComponentModel;u... 阅读全文
摘要:
using System;using System.Collections;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Net;usin... 阅读全文
摘要:
使用截取字符串的方法,打乱原有文档的顺序,重新组合。截取字符串时只考虑了“,”间隔,没有考虑其他标点符号,也没有考虑重组的可读性。留待以后改善!using System;using System.Collections.Generic;using System.ComponentModel;usin... 阅读全文
摘要:
1、打开文件路径: OpenFileDialog a= new OpenFileDialog(); //new一个方法a.Filter = "(*.et;*.xls;*.xlsx)|*.et;*.xls;*.xlsx|all|*.*"; //删选、设定文件显示类型a.ShowDialog(); /... 阅读全文
摘要:
c# 操作txt文件 # 操作txt文件 c#创建文本private const string FILE_NAME = "ErroLog.txt"; public static void WriteFile(string str) ...{ S... 阅读全文