九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
asp.net 將DataTable中的數(shù)據(jù)導(dǎo)出到Excel并下載方法
我上一篇文章介紹了Excel導(dǎo)入到DataTable的方法,總覺得少些什么,這篇我就將DataTable
中的數(shù)據(jù)導(dǎo)出到Excel并提供下載的方法記錄下來。
調(diào)用如下:
CreateExcel(dtexcel, "application/ms-excel", excel);
方法如下:
/// <summary>
/// DataTable中的數(shù)據(jù)導(dǎo)出到Excel并下載
/// </summary>
/// <param name="dt">要導(dǎo)出的DataTable</param>
/// <param name="FileType">類型</param>
/// <param name="FileName">Excel的文件名</param>
public void CreateExcel(DataTable dt, string FileType, string FileName)
{
Response.Clear();
Response.Charset = "UTF-8";
Response.Buffer = true;
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
Response.AppendHeader("Content-Disposition", "attachment;filename=\"" + System.Web.HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8) + ".xls\"");
Response.ContentType = FileType;
string colHeaders = string.Empty;
string ls_item = string.Empty;
DataRow[] myRow = dt.Select();
int i = 0;
int cl = dt.Columns.Count;
foreach (DataRow row in myRow)
{
for (i = 0; i < cl; i++)
{
if (i == (cl - 1))
{
ls_item += row[i].ToString() + "\n";
}
else
{
ls_item += row[i].ToString() + "\t";
}
}
Response.Output.Write(ls_item);
ls_item = string.Empty;
}
Response.Output.Flush();
Response.End();
}
asp.net 將Excel中某個(gè)工作簿的數(shù)據(jù)導(dǎo)入到DataTable方法
最近在網(wǎng)上看了幾篇將Excel中某個(gè)工作簿的數(shù)據(jù)導(dǎo)入到DataTable的文章,自己總結(jié)了一套最實(shí)用的方法。
這里需要注意的是:從Excel的導(dǎo)入到DataTable時(shí),Excel的第一行數(shù)據(jù)會(huì)導(dǎo)入成DataTable的字段,所以
Excel的第一行最好可以為空或者標(biāo)識(shí)數(shù)據(jù)。
添加引用:
using System.Data.OleDb;
using System.IO;
調(diào)用如下:
DataTable dt = GetExcelData("D:\\Data.xls", "sheet1");
方法如下:
/// <summary>
/// 獲取指定路徑、指定工作簿名稱的Excel數(shù)據(jù)
/// </summary>
/// <param name="FilePath">文件存儲(chǔ)路徑</param>
/// <param name="WorkSheetName">工作簿名稱</param>
/// <returns>如果爭取找到了數(shù)據(jù)會(huì)返回一個(gè)完整的Table,否則返回異常</returns>
public DataTable GetExcelData(string FilePath, string WorkSheetName)
{
DataTable dtExcel = new DataTable();
OleDbConnection con = new OleDbConnection(GetExcelConnection(FilePath));
OleDbDataAdapter adapter = new OleDbDataAdapter("Select * from [" + WorkSheetName + "$]", con);
//讀取
con.Open();
adapter.FillSchema(dtExcel, SchemaType.Mapped);
adapter.Fill(dtExcel);
con.Close();
dtExcel.TableName = WorkSheetName;
//返回
return dtExcel;
}
/// <summary>
/// 獲取鏈接字符串
/// </summary>
/// <param name="strFilePath"></param>
/// <returns></returns>
public string GetExcelConnection(string strFilePath)
{
if (!File.Exists(strFilePath))
{
throw new Exception("指定的Excel文件不存在!");
}
return "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strFilePath + ";Extended properties=\"Excel 8.0;Imex=1;HDR=Yes;\"";
//@"Provider=Microsoft.Jet.OLEDB.4.0;" +
//@"Data Source=" + strFilePath + ";" +
//@"Extended Properties=" + Convert.ToChar(34).ToString() +
//@"Excel 8.0;" + "Imex=1;HDR=Yes;" + Convert.ToChar(34).ToString();
}
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
C#使用 OleDbConnection 連接讀取Excel
導(dǎo)出Excel
Excel導(dǎo)入,導(dǎo)出,模板生成
(C#)excel數(shù)據(jù)導(dǎo)入SqlServer中 - ziping99的日志 - 網(wǎng)易博客
C# Excel導(dǎo)入sqlserver
Asp.net中把DataTable或DataGrid導(dǎo)出為Excel - 海南K.K -...
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服