程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> net datatable導出txt-.net dataTable導出txt問題,在線等。

net datatable導出txt-.net dataTable導出txt問題,在線等。

編輯:編程綜合問答
.net dataTable導出txt問題,在線等。

dataTable導出txt 一下是我的代碼

private static void ExportTxt(DataTable dt, string fileName)
{
HttpContext.Current.Response.Clear();
string FileName = fileName + ".txt";
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.Charset = "GB2312";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, Encoding.UTF8).ToString());
HttpContext.Current.Response.ContentType = "text/plain";
System.IO.StringWriter sw = new System.IO.StringWriter();
for (int i = 0; i < dt.Rows.Count; i++)
{

            for (int j = 0; j < dt.Columns.Count; j++)
            {

                sw.WriteLine(dt.Rows[i][j].ToString().Trim());
            }
            sw.WriteLine();
        }
        HttpContext.Current.Response.Write(sw.ToString());
        sw.Close();
        HttpContext.Current.Response.End();
    }

結果成這樣
圖片說明
而我需要這樣的形式的txt文件,一定是我循環的不對。
圖片說明
在線等,求解。

最佳回答:


 sw.Write(dt.Rows[i][j].ToString().Trim() + ",");
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved