在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前一段时间用asp.net调用excel做报表,有一些小心得。 1.创建:我先自己创建了一份模版,然后用excel读取模版,再把数据写进去。这样做的好处,就是可以把数据层和表现层分开,以后需要改变颜色,字体等等的时候,只要format这个模版就行了。 读取模版文件(templateName为文件名):
Dim objExcel As Excel.Application
Dim objSheet As Excel.Worksheet Try objExcel = New Excel.Application() 'If encounter same name file,then overwrite objExcel.Application.DisplayAlerts = False objExcel.Visible = False objExcel.SheetsInNewWorkbook = 1 objExcel.Workbooks.Add(Server.MapPath(templateName)) End Try objSheet = objExcel.Workbooks(1).Worksheets(1) 2.数据:然后就往里面写数据啦。如果是单个的数据当然好写,像这样: 3.格式:上面不是说了在模版里面format嘛,为什么又要再讲?别忘了,再模版里面东西是死的,第几行就是第几行,可是你写了一堆数据进去后,行数就全变了阿。这时候有两种办法:1,写code来format。我是对每种格式都定义了一下,比如表头是一种格式,数据栏是一种格式,统计栏是一种格式。然后定义每种格式,比如边框,有边框/无边框,对齐,下划线,字体,折叠,number format等等。 这个function是用来format一个制定的range的。 使用的时候: 这里才列了7种格式,当时我越写越多,每种不同的格式都要定义一下,很快写了30多种格式,实在不想写了,才想了下面这种方法。 其实也很简单,把每种格式都做在template里面,比如为表头定义一行,数据栏定义一行,然后copy表头那一行,再在里面写字;copy数据栏那一行paste,需要多少行就paste多少行,然后再写数据。 copy预先在template里面定义好的数据栏 4.清除垃圾:Excel这个进程,如果不杀死的话,就不会自动退出,所以一定要手动杀死: If Not objExcel Is Nothing Then objExcel.Workbooks.Close() objExcel.Quit() System.Runtime.InteropServices.Marshal.ReleaseComObject(objExcel) End If If Not objSheet Is Nothing Then System.Runtime.InteropServices.Marshal.ReleaseComObject(objSheet) End If objSheet = Nothing objExcel = Nothing GC.Collect()
Dim strFileName As String = GetFileName() '自己写的得到一个文随机的文件名 objExcel.Workbooks(1).SaveCopyAs(strFileName) '需要一个可以写的folder Response.Clear() Response.Charset = "" Response.ContentType = "Application/vnd.ms-excel" Response.AppendHeader("content-disposition", "attachment; filename=" & Type & "Report" & ".xls") Dim exl As Byte() = ReadFile(strFileName) '自己写的binary读取文件的函数 Response.OutputStream.Write(exl, 0, exl.Length) Response.OutputStream.Flush() Response.End()
这个文件当然是要删除的,我在page_unload里面删除他:
|
请发表评论