簡體   English   中英

導出數據表時如何刪除導出到Excel警告

[英]How to remove export to excel warning when exporting datatable

我有以下代碼,數據表已經有數據,我想將其導出到excel。 但是我收到以下警告,我嘗試了xlsx,但它不起作用。 我也嘗試了csv,並且數據沒有按需要打開到列中。

public static void ExportDatatabletoExcel(DataTable dt, List<string> columnNames)
        {
            try
            {
                const string attachment = "attachment; filename=elreport.xls";
                HttpContext.Current.Response.ClearContent();
                HttpContext.Current.Response.AddHeader("content-disposition", attachment);
                HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
                string tab = "";
                foreach (DataColumn dc in dt.Columns)
                {
                    if (!columnNames.Contains(dc.ColumnName)) continue;
                    HttpContext.Current.Response.Write(tab + dc.ColumnName);
                    tab = "\t";
                }
                HttpContext.Current.Response.Write("\n");
                int i;
                foreach (DataRow dr in dt.Rows)
                {
                    tab = "";
                    for (i = 0; i < dt.Columns.Count; i++)
                    {
                        if(!columnNames.Contains(dt.Columns[i].ColumnName)) continue;
                        HttpContext.Current.Response.Write(tab + dr[i].ToString());
                        tab = "\t";
                    }


                    HttpContext.Current.Response.Write("\n");
                }
                HttpContext.Current.Response.End();
            }
            catch (Exception ex)
            {
                string errorMessage = String.Format("ExportToExcelError: {0}", ex.Message);
                LoggingService.LogError(LoggingCategory.General, ex, errorMessage);
                throw;
            }
        }

錯誤是:

如何在Excel下載時抑制文件損壞警告的 答案 解決了一些問題。 我建議也檢查一些其他答案。

該警報是Excel 2007中的一項新的安全功能,稱為擴展強化,可確保打開的文件內容與嘗試打開文件的shell命令中指定的擴展名類型匹配。

...

這個問題仍在調查中,但是鑒於Office 14的代碼復雜性,並且在不完全了解IE開放行為的情況下Excel不想降低安全措施來解決IE開放行為的事實,直到Office 14才可能解決此問題。對其他瀏覽器用戶的后果。

此外, 此評論可能會有所幫助。

我認為這僅適用於使用CSV並另存為XLS的情況。 但是,如果您構建一個真正的excel文件,那應該沒問題。 CF9 cfspreadsheet將成為您的朋友。 :) –亨利09年6月25日在23:53

其他要檢查的資源:

有兩種清除警告的肯定方法。

  1. 使用OpenXML API或EPPlus API構建有效的.xlsx文件(EPPlus更容易,並且實際上支持OleDB導入)

  2. 將文件構建為擴展名為.csv的.csv,但將內容類型保留為Excel,以便使用Excel打開。 但是,在構建文件的方式上,Excel可能無法正確讀取內容,這需要解決:

如果以某些方式設置了格式,Excel只能讀取CSV。 假設您使用Excel for Windows,編碼也必須是Windows 1252,否則它將無法處理外來字符。 另外,郵政編碼等中的前導零也需要專門針對Excel處理。

  public static class CSVExportUtility
    {
    /// <summary>
        /// Open a datatable in Excel
        /// </summary>
        /// <param name="dt"></param>
        /// <param name="fileName"></param>
        public static void OpenAsCSV(DataTable dt, string fileName)
        {
            CSVExportUtility.OpenAsCSV(DataTableToCSV(dt), fileName); // now open the file
        }   // OpenAsCSV
    /// <summary>
        /// open the content in the browser as a CSV
        /// </summary>
        /// <param name="sbCSVFileData"></param>
        /// <param name="filename"></param>
        public static void OpenAsCSV(StringBuilder sbCSVFileData, string fileName)
        {
            if (HttpContext.Current == null || HttpContext.Current.Response == null)
                return;

            HttpContext.Current.Response.Clear();
            HttpContext.Current.Response.AddHeader(
                "content-disposition", string.Format("attachment; filename={0}", fileName));
            HttpContext.Current.Response.ContentType = "application/ms-excel";

            // This is a little tricky.  Would like to use utf-8 or unicode... but Excel on Windows uses 1252 by default so we need to keep the same so most users can read the file.
            // At some point, we may need to actually convert our text from whatever .NET uses to 1252, but at the moment they seem similar enough that it is okay
            HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding(1252);

            //  render the htmlwriter into the response
            HttpContext.Current.Response.Write(sbCSVFileData.ToString());
            HttpContext.Current.Response.End();
        }

static StringBuilder DataTableToCSV(DataTable dt)
        {
            StringBuilder sb = new StringBuilder();
            foreach (DataColumn dc in dt.Columns)
            {
                if (dc == dt.Columns[dt.Columns.Count - 1])
                    CSVExportUtility.AddFieldForCSV(dc.ColumnName, sb, false, true);
                else
                    CSVExportUtility.AddFieldForCSV(dc.ColumnName, sb, true, false);
            }
            foreach (DataRow dr in dt.Rows)
            {
                foreach (DataColumn dc in dt.Columns)
                {
                    if (dc == dt.Columns[dt.Columns.Count - 1])
                        CSVExportUtility.AddFieldForCSV(FormatDataValue(dr[dc.ColumnName]), sb, false, true);
                    else
                        CSVExportUtility.AddFieldForCSV(FormatDataValue(dr[dc.ColumnName]), sb, true, false);
                }
            }
            return sb;
        }

  static string FormatDataValue(object dv)
        {
            if (dv == null)
                return null;
            if (dv is DateTime)
                return ((DateTime)dv).ToShortDateString();
            else
                return dv.ToString();
        }

        /// <summary>
        /// export text to a csv
        /// </summary>
        /// <param name="text"></param>
        /// <param name="sbCSV"></param>
        /// <param name="appendTrailingComma"></param>
        /// <param name="endOfRow"></param>
        public static void AddFieldForCSV(string text, StringBuilder sbCSV, bool appendTrailingComma, bool endOfRow)
        {
            // shouldn't start or end with whitespace, escape quotes
            if (text != null)
                text = text.Trim().Replace("\"", "\"\"");

            // quote field
            int testInt;
            if (text != null && text.Trim().Length > 1 && text.Trim()[0] == '0' && int.TryParse(text.Trim(), out testInt))
            {   // if text is numeric and starts with '0' tell excel to treat as string and not strip the zero. This ONLY works if it's numeric!  Otherwise it fails, example ="a,b" will use 2 cells
                text = "=\"" + text.Trim() + "\"";
            }
            else
            {
                text = "\"" + text + "\"";
            }

            sbCSV.Append(text);
            if (appendTrailingComma)
                sbCSV.Append(",");
            if (endOfRow)
                sbCSV.AppendLine();
        }
}

如果您要導出GridView而不是DataTable,請訪問以下說明: http : //atakala.com/Browser/Item.aspx? user_id=amos&dict_id= 2325 ; 許多代碼是相似的(CSVExportUtility方法)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM