资源简介
通用类,专门用来操作Excel .包含 读取 导出 写入 等功能
代码片段和文件信息
//C#读取Excel
private void ReadExcel(){
OleDbCommand cmd = null;
OleDbConnection conn = null;
string fileName = hidFileName.Text + “.xls“;
string filePath = Path.Combine(Server.MapPath(“Excell/ImportExcelTempFolder“) fileName);
try
{
String connString = “Provider=Microsoft.Jet.OLEDB.4.0;“ +
“Data Source=“ + filePath + “;Extended Properties=\“Excel 8.0;HDR=YES;IMEX=1\““;
string message = ““;
int count = 0;
using (conn = new OleDbConnection(connString))
{
if (conn.State == ConnectionState.Closed)
conn.Open();
cmd = conn.CreateCommand();
string strSql = “SELECT [老师] [课程][年级][班级][合作老师] FROM [授课安排$]“;
cmd.CommandText = strSql;
using (OleDbDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection))
{
int i = 0;
while (dr.Read())
{
i++;
......
}
}
}
}
catch (Exception ex)
{
if (File.Exists(filePath))
{
File.Delete(filePath);
}
throw ex;
}
finally
{
if (conn != null && conn.State == ConnectionState.Open)
conn.Close();
}
}
//C#导出为Excel
//这里我写了一个通用类,专门用来操作Excel
using System;
using System.IO;
using System.Data;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using System.Globalization;
using System.Collections;
using System.Data.OleDb;
namespace Com.DRPENG.SDXY.UI.Common
{
public class ExcelHelper
{
static object obj = new object();
#region Fields
string _fileName;
DataTable _dataSource;
string[] _titles = null;
string[] _fields = null;
int _maxRecords = 1000;
#endregion
#region Properties
///
/// 限制输出到 Excel 的最大记录数。超出则抛出异常
///
public int MaxRecords
{
set { _maxRecords = value; }
get { return _maxRecords; }
}
///
/// 输出到浏览器的 Excel 文件名
///
public string FileName
{
set { _fileName = value; }
get { return _fileName; }
}
#endregion
#region .ctor
///
/// 构造函数
///
/// tles“>要输出到 Excel 的列标题的数组
/// 要输出到
相关资源
- 非常好用的遗传算法 C#程序 源码 遗传
- asp.net+c#学生信息管理系统C/S程序+源代
- C#俄罗斯方块源文件和资源文件
- 考试管理系统(C#源码 C/S架构)
- C# TCP助手异步通讯
- C# 串口通讯Demo(VS2010)
-
用c#+AE做 st
yleserver 和 Renderer程序 - C# Socket多客户端异步通信
- XTable C#WinFom下的一个表格的自定义控
- c# 操作word强大类库牛人版pixysoft.off
- AspNetPager asp.net 分页控件
- C# 一个完整的客户端和服务器端
- C# 导入excel到datagridview
- C# 链接PLC
- CRC校验源代码C#
- 基于C#的超市进销存销售管理系统的设
- C#实现串口操作包括读写串口,显示数
- c#图像相似度比较demo
- 非常好看的winform 自定义日期控件
- PC微信加密图片解密源码C#
- 燕山大学C#实验报告
- 非常好看的winform 自定义日期控件可直
- 基于C#MVC停车管理系统
- C#结合Halcon,对图像也可以拍照进行轮
- Color_Seg_Kmeans.zip
- TCP/IP通信c#例程
- 猜数字游戏的C#实现带界面
- Visionpro 脚本 C#
- C#串口编程基础入门
- ASP.net视频教程从入门到高级+电子书
评论
共有 条评论