资源简介
本来以为通过Microsoft.Office.Interop.Excel来操作Excel的速度已经是很不理想,所以找到了OpenXml,本以为通过这种方式来操作速度应该提升很多吧,谁知试了一下那速度真是相当的慢~~~我分别用两种方式些1000*26个单元格的数据,OpenXml居然10分了都还没写完,而普通的操作1分钟内就可以搞定了~~~不知道是我代码的问题,还是OpenXml本身的效率问题,还请大家在下载资源后帮我看一看~~~~~~
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DocumentFormat.Openxml;
using DocumentFormat.Openxml.Packaging;
using DocumentFormat.Openxml.Spreadsheet;
using System.Text.Regularexpressions;
using Excel = Microsoft.Office.Interop.Excel;
namespace OpenxmlTest
{
class Program
{
public static void UseCommom()
{
Excel.Application excelApp = new Excel.Application();
Excel.Workbook expWorkBookConfig = null;//EXCEL 产品配置文件 (中文)
Excel.Workbooks expWorkBooks = null;
//打开Excle文件 创建表格对象
excelApp.Visible = false; excelApp.DisplayAlerts = false;
try
{
expWorkBooks = excelApp.Workbooks;
expWorkBookConfig = expWorkBooks.Add(Excel.XlWBATemplate.xlWBATWorksheet);
Excel.Worksheet sheet = expWorkBookConfig.Worksheets[1];
for (int iLine = 1; iLine < 200; iLine++)
{
for (char ch = ‘A‘; ch <= ‘Z‘; ch++)
{
string str = string.Format(“{0}“ ch);
Excel.Range ACell = sheet.get_Range(str + iLine.ToString() System.Reflection.Missing.Value);
ACell.Value2 = “TestTestTestTestTestTestTestTestTestTestTestTestTestTestTest“;
}
}
expWorkBookConfig.SaveAs(@“D:\03.Code\03.New_Project\TestProject\OpenxmlTest\OpenxmlTest\bin\Release\Commom.xlsx“
System.Reflection.Missing.Value
System.Reflection.Missing.Value
System.Reflection.Missing.Value
System.Reflection.Missing.Value
System.Reflection.Missing.Value
Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlExclusive
System.Reflection.Missing.Value
System.Reflection.Missing.Value
System.Reflection.Missing.Value
System.Reflection.Missing.Value
System.Reflection.Missing.Value);
expWorkBookConfig.Close();
excelApp.Quit();
}
catch (System.Exception ex)
{
Console.WriteLine(ex.Message);
excelApp.Quit();
expWorkBookConfig = null;
excelApp = null;
}
GC.Collect();
}
public static void UseOpenxml()
{
TLExcel doc = new TLExcel();
if (TLExcel.TLOK == doc.Create(“Openxml.xlsx“))
{
Console.WriteLine(“开始时间:“ + DateTime.Now);
for (int iLine = 1; iLine < 200; iLine++)
{
for (char ch = ‘A‘; ch <= ‘Z‘; ch++)
{
string str = string.Format(“{0}“ ch);
doc.WriteCellV
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3690 2012-03-27 10:48 Program.cs
文件 14006 2012-03-27 09:50 TLExcel.cs
----------- --------- ---------- ----- ----
17696 2
相关资源
- Qt的Excel操作添加了新建Excel文件的功
- 一个EXCEL宏病毒代码
- 华为项目管理Excel模板
- 等级保护2.0三级测评要求含云安全扩
- Recovery for Excel 3.0破解
- 一个真正的所见即所得的PB导出EXCEL
- pyexcel技术文档
- excel2pajek
- 瞬间破解WORD-EXCEL文件密码
- Excel函数练习题
- 全面解读txt excel word转vcard并导入手机
- 华为项目管理10大模板Excel版(可直接
- DDE 与 Excel 进行通讯的VC源程序
- LabVIEW读取Excel文件中的值
- txt转excel
- nc65导入excel代码
- EXCEL自动筛选源代码程序
- excel电子表格练习题
- GridView导出到Excel
- 一键生成带有所有文件名的Excel表格
- EXCEL发货单开单软件
- excel万年历简版
- Excel—“撤销工作表保护密码”的破解
- 华为项目管理10大模板excel
- CATIA 3D点坐标快速导出EXCEL(适用任何
- Office机器人2.1.752.268
- as3解析excel2010
- 全国县区级经纬度EXCEL表
-
Openxm
l白皮书译文 - flex导入excel2007版本以上并支持日期格
评论
共有 条评论