ASP.NET中產生Excel遇到的問題及改進方法

來源:互聯網
上載者:User

先看一下方法(其中略去了一些判斷和擴充):
產生Excel老代碼
複製代碼 代碼如下:/// <summary>
/// 將一組對象匯出成EXCEL
/// </summary>
/// <typeparam name="T">要匯出對象的類型</typeparam>
/// <param name="objList">一組對象</param>
/// <param name="FileName">匯出後的檔案名稱</param>
/// <param name="columnInfo">列名資訊</param>
public static void ExExcel<T>(List<T> objList, string FileName, Dictionary<string, string> columnInfo)
{

if (columnInfo.Count == 0) { return; }
if (objList.Count == 0) { return; }
//產生EXCEL的HTML
string excelStr = "";

Type myType = objList[0].GetType();
//根據反射從傳遞進來的屬性名稱資訊得到要顯示的屬性
List<PropertyInfo> myPro = new List<PropertyInfo>();
foreach (string cName in columnInfo.Keys)
{
PropertyInfo p = myType.GetProperty(cName);
if (p != null)
{
myPro.Add(p);
excelStr += columnInfo[cName] + "\t";
}
}
//如果沒有找到可用的屬性則結束
if (myPro.Count == 0) { return; }
excelStr += "\n";

foreach (T obj in objList)
{
foreach (PropertyInfo p in myPro)
{
excelStr += p.GetValue(obj, null) + "\t";
}
excelStr += "\n";
}

//輸出EXCEL
HttpResponse rs = System.Web.HttpContext.Current.Response;
rs.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
rs.AppendHeader("Content-Disposition", "attachment;filename=" + FileName);
rs.ContentType = "application/ms-excel";
rs.Write(excelStr);
rs.End();
}

到這個時候我想應該有朋友能看出來問題所在了。

這個方法產生Excel資料量不大的時候不會出現問題,當資料量變大之後問題就出來了。因為方法裡面定義了一個string類型的變數,將需要填充到Excel的內容疊加。對於string類型的資料使用+=操作相當於使用string.Concat方法連接字串。每當進行一次+=操作的時候就會產生一個新字串。必然會開闢一塊記憶體,這樣的操作一多就會把記憶體耗盡,產生一個OutOfMemoryException。

知道了問題所在,改進起來也很容易,那就是利用StringBuilder疊加需要填充到Excel的內容,改進後的代碼如下:
改進後產生Excel的代碼
複製代碼 代碼如下:/// <summary>
/// 將一組對象匯出成EXCEL
/// </summary>
/// <typeparam name="T">要匯出對象的類型</typeparam>
/// <param name="objList">一組對象</param>
/// <param name="FileName">匯出後的檔案名稱</param>
/// <param name="columnInfo">列名資訊</param>
public static void ExExcel<T>(List<T> objList, string FileName, Dictionary<string, string> columnInfo)
{

if (columnInfo.Count == 0) { return; }
if (objList.Count == 0) { return; }
//產生EXCEL的HTML
StringBuilder excelStr = new StringBuilder(objList.Count * columnInfo.Count);

Type myType = objList[0].GetType();
//根據反射從傳遞進來的屬性名稱資訊得到要顯示的屬性
List<PropertyInfo> myPro = new List<PropertyInfo>();
foreach (string cName in columnInfo.Keys)
{
PropertyInfo p = myType.GetProperty(cName);
if (p != null)
{
myPro.Add(p);
excelStr.Append(columnInfo[cName]).Append("\t");
}
}
//如果沒有找到可用的屬性則結束
if (myPro.Count == 0) { return; }
excelStr.Append("\n");

foreach (T obj in objList)
{
foreach (PropertyInfo p in myPro)
{
excelStr.Append(p.GetValue(obj, null)).Append("\t");
}
excelStr.Append("\n");
}

//輸出EXCEL
HttpResponse rs = System.Web.HttpContext.Current.Response;
rs.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
rs.AppendHeader("Content-Disposition", "attachment;filename=" + FileName);
rs.ContentType = "application/ms-excel";
rs.Write(excelStr);
rs.End();
}
}

在執行個體化StringBuilder excelStr = new StringBuilder(objList.Count * columnInfo.Count);時候預分配開始大小,這樣能更好的使用StringBuilder。至此,改進完成。
另外,如果您覺得反射會影響效能,那麼可以改成運算式樹狀架構的方式,或者使用limit。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.