歌舞程序

导航

随笔分类 -  C#

C#相关记录
C#操作文件(转)
摘要:C#追加文件StreamWritersw=File.AppendText(Server.MapPath(".")+"\\myText.txt");sw.WriteLine("追逐理想");sw.WriteLine("kzlll");sw.WriteLine(".NET笔记");sw.Flush();sw.Close();C#拷贝文件stringorignFile,NewFile;orignFile... 阅读全文

posted @ 2009-11-10 15:20 歌舞程序 阅读(302) 评论(0) 推荐(0)

C#操作EXCEL
摘要:关于读取excel和导入excel的相关问题。闲暇时间将我所知道的对excel的操作加以总结,现在共享大家,希望给大家能够给大家带了一定的帮助。另外我们还要注意一些简单的问题1.excel文件只能存储65535行数据,如果你的数据大于65535行,那么就需要将excel分割存放了。2.关于乱码,这主要是字符设置问题。1.加载Excel(读取excel内容)返回值是一个DataSet //加载Exc... 阅读全文

posted @ 2009-10-15 20:49 歌舞程序 阅读(218) 评论(0) 推荐(0)

C#设置IP
摘要:using System;using System.Collections;using System.Text;using System.Management;using System.Text.RegularExpressions;namespace Kingthy.Windows.IPChanger.Providers{ /// <summary> /// IPProvider 的... 阅读全文

posted @ 2009-08-28 20:52 歌舞程序 阅读(1384) 评论(0) 推荐(0)

使用C#在XP系统上获取当前使用的SSID
摘要:using System;using System.Collections.Generic;using System.Text;using System.Management;//System.Management.dllnamespace test_get_current_connect_console{ class Program { static void Main(string[] arg... 阅读全文

posted @ 2009-08-28 20:14 歌舞程序 阅读(602) 评论(0) 推荐(0)