泛型List导出Excel

今天整了个Excel泛型导出,切出来大家看看
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace Utility.Util
{
         public class Ecel<T>
        {
                 public static void DataBindTitleExcel(System.Web.HttpResponseBase response, List<T> list, List< string> columnName, List< string> propertyName, string ExcelTitle, string strUserMsg)
                {

                         if (list.Count == 0)
                        {
                                response.Write( "<script>alert('对不起,没有查询到任何记录,导出失败!')</script>");
                                response.End();
                        }
                        response.ContentEncoding = Encoding.GetEncoding( "GB2312");
                        response.ContentType = "application/ms-excel";
                        response.AppendHeader( "Content-Disposition", "attachment;filename=Export.xls");
                         int count = list.Count;
                        StringBuilder builder = new StringBuilder();
                        builder.Append( "<html><head>/n");
                        builder.Append( "<meta http-equiv=/"Content-Language/" content=/"zh-cn/">/n");
                        builder.Append( "<meta http-equiv=/"Content-Type/" content=/"text/html; charset=gb2312/">/n");
                        builder.Append( "</head>/n");
                        builder.Append( "<table border=1>");
                         if (ExcelTitle != "")
                        {
                                 string str = "<font size=4><b>" + ExcelTitle + "</b></font>";
                                 if (strUserMsg != "")
                                {
                                        str = str + "(" + strUserMsg + ")";
                                }
                                builder.Append( string.Concat( new object[] { "<tr><td colspan=", count, ">", str, "</td></tr>" }));
                        }
                        builder.Append( "<tr><td colspan=" + count + " valign=middle height=24>");
                        builder.Append( "查询时间:" + DateTime.Now.ToString( "G") + "</td></tr>");
                        builder.Append( "<tr>/n");
                         for ( int i = 0; i < columnName.Count; i++)
                        {

                                builder.Append( "<td bgcolor=#969696><b>" + columnName[i] + "</b></td>/n");

                        }
                        Type objType = typeof(T);
                        BindingFlags bf = BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static; //反射标识
                        PropertyInfo[] propInfoArr = objType.GetProperties(bf);

                         foreach (T model in list)
                        {

                                builder.Append( "<tr>");

                                 foreach (PropertyInfo propInfo in propInfoArr)
                                {

                                         foreach ( string propName in propertyName)
                                        {

                                                 if ( string.Compare(propInfo.Name.ToUpper(), propName.ToUpper()) == 0)
                                                {

                                                        PropertyInfo modelProperty = model.GetType().GetProperty(propName);
                                                         if (modelProperty != null)
                                                        {

                                                                 object objResult = modelProperty.GetValue(model, null);
                                                                builder.Append( "<td style='vnd.ms-excel.numberformat:@'>" + ((objResult == null) ? string.Empty : objResult) + "</td>");
                                                        }
                                                         else
                                                        {
                                                                 throw new Exception( "Property name may be not exists!");
                                                        }
                                                }
                                        }
                                }
                                builder.Append( "</tr>/n");
                        }
                        builder.Append( "</table>/n");
                        response.Write(builder.ToString());
                        response.End();
                }

        }
}
看看效果,这是在MVC2中的导出
在Webforms中只要你将response换成System.Web.UI.Page page对象的Response即可。

本文出自 “微软技术” 博客,请务必保留此出处http://leelei.blog.51cto.com/856755/346978

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值