C# 데이터 가져오기/내보내기 Excel 파일 및 winForm 내보내기 Execl 요약

17081 단어
1. asp.net에서 Execl을 내보내는 방법:
asp.net에서 Execl을 내보내는 방법은 두 가지가 있는데 하나는 내보낸 파일을 서버의 폴더 아래에 저장한 다음 브라우저에 파일 주소를 출력하는 것이다.하나는 파일을 브라우저에 직접 출력하는 것입니다.Response에서 출력할 때\t로 구분된 데이터,execl을 내보낼 때는 열 나누기와 줄 바꾸기와 같습니다.
1、전체 html 전부 출력execl
이 방법은 html의 모든 내용, 예를 들어 단추, 표, 그림 등을 Execl에 출력한다.
 
  
Response.Clear();
Response.Buffer= true;
Response.AppendHeader("Content-Disposition","attachment;filename="+DateTime.Now.ToString("yyyyMMdd")+".xls");
Response.ContentEncoding=System.Text.Encoding.UTF8;
Response.ContentType = "application/vnd.ms-excel";
this.EnableViewState = false;
 
여기에서 우리는ContentType 속성을 이용했다. 기본 속성은text/html이다. 이때 하이퍼텍스트로 출력한다. 즉, 우리가 흔히 볼 수 있는 웹 페이지 형식을 클라이언트에게 출력한다. ms-excel로 바꾸면 excel 형식을 출력한다. 즉, 전자 표 형식으로 클라이언트에게 출력한다. 이때 브라우저는 다운로드하고 저장하라고 알릴 것이다.ContentType의 속성에는 image/JPEG,text/HTML;image/GIF;vnd.ms-excel/msword .마찬가지로 우리는 그림,word 문서 등을 출력할 수 있다.아래의 방법도 모두 이 속성을 사용했다.
2. DataGrid 컨트롤의 데이터를 Execl로 내보내기
상술한 방법은 내보내는 기능을 실현했지만 단추, 페이지 상자 등 html의 모든 출력 정보를 동시에 안내했다.일반적으로 데이터, DataGrid 컨트롤의 데이터를 내보냅니다.
 
  
System.Web.UI.Control ctl=this.DataGrid1;
//DataGrid1
HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset ="UTF-8";
HttpContext.Current.Response.ContentEncoding =System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType ="application/ms-excel";
ctl.Page.EnableViewState =false;
System.IO.StringWriter tw = new System.IO.StringWriter() ;
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter (tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();

만약 DataGrid가 페이지를 나누는 것을 사용한다면, 현재 페이지의 정보를 내보냅니다. 즉, DataGrid에 표시된 정보를 내보냅니다.당신의 select 문장의 모든 정보가 아닙니다.
편리한 사용을 위해 다음과 같이 작성되었습니다.
 
  
public void DGToExcel(System.Web.UI.Control ctl)
{
HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset ="UTF-8";
HttpContext.Current.Response.ContentEncoding =System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType ="application/ms-excel";
ctl.Page.EnableViewState =false;
System.IO.StringWriter tw = new System.IO.StringWriter() ;
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter (tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();
}

사용예: DGtoExcel(datagrid1),
3. DataSet의 데이터를 Execl로 내보내기
위의 사고방식은 내보낸 정보, 출력(Response) 클라이언트를 내보낼 수 있다는 것이다.그러면 DataSet의 데이터, 즉 DataSet의 표의 각 줄 정보를 ms-excel 형식의Response로 http로 내보내면 OK입니다.설명: 매개 변수 ds는 데이터 테이블이 있는 DataSet을 채워야 합니다. 파일 이름은 전체 이름이고 접미사 이름을 포함합니다. 예를 들어execl2006.xls
 
  
public void CreateExcel(DataSet ds,string FileName)
{
HttpResponse resp;
resp = Page.Response;
resp.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
resp.AppendHeader("Content-Disposition", "attachment;filename="+FileName);
string colHeaders= "", ls_item="";

// , DataSet
DataTable dt=ds.Tables[0];
DataRow[] myRow=dt.Select();// dt.Select("id>10")
int i=0;
int cl=dt.Columns.Count;


// , \t ,
for(i=0;i{
if(i==(cl-1))// ,

{
colHeaders +=dt.Columns[i].Caption.ToString() +"
";
}
else
{
colHeaders+=dt.Columns[i].Caption.ToString()+"\t";
}

}
resp.Write(colHeaders);
// HTTP

//
foreach(DataRow row in myRow)
{
// HTTP , ls_item
for(i=0;i{
if(i==(cl-1))// ,

{
ls_item +=row[i].ToString()+"
";
}
else
{
ls_item+=row[i].ToString()+"\t";
}

}
resp.Write(ls_item);
ls_item="";

}
resp.End();
}

4、데이터뷰를 execl로 내보내기
변화가 많거나 행렬이 불규칙한execl 내보내기를 실현하려면 이 방법을 사용하십시오.   
 
  
public void OutputExcel(DataView dv,string str)
{
//dv Excel ,str
GC.Collect();
Application excel;// = new Application();
int rowIndex=4;
int colIndex=1;

_Workbook xBk;
_Worksheet xSt;

excel= new ApplicationClass();

xBk = excel.Workbooks.Add(true);

xSt = (_Worksheet)xBk.ActiveSheet;

//
//
//
foreach(DataColumn col in dv.Table.Columns)
{
colIndex++;
excel.Cells[4,colIndex] = col.ColumnName;
xSt.get_Range(excel.Cells[4,colIndex],excel.Cells[4,colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//
}

//
//
//
foreach(DataRowView row in dv)
{
rowIndex ++;
colIndex = 1;
foreach(DataColumn col in dv.Table.Columns)
{
colIndex ++;
if(col.DataType == System.Type.GetType("System.DateTime"))
{
excel.Cells[rowIndex,colIndex] = (Convert.ToDateTime(row[col.ColumnName].ToString())).ToString("yyyy-MM-dd");
xSt.get_Range(excel.Cells[rowIndex,colIndex],excel.Cells[rowIndex,colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//
}
else
if(col.DataType == System.Type.GetType("System.String"))
{
excel.Cells[rowIndex,colIndex] = "'"+row[col.ColumnName].ToString();
xSt.get_Range(excel.Cells[rowIndex,colIndex],excel.Cells[rowIndex,colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//
}
else
{
excel.Cells[rowIndex,colIndex] = row[col.ColumnName].ToString();
}
}
}
//
//
//
int rowSum = rowIndex + 1;
int colSum = 2;
excel.Cells[rowSum,2] = " ";
xSt.get_Range(excel.Cells[rowSum,2],excel.Cells[rowSum,2]).HorizontalAlignment = XlHAlign.xlHAlignCenter;
//
//
//
xSt.get_Range(excel.Cells[rowSum,colSum],excel.Cells[rowSum,colIndex]).Select();
xSt.get_Range(excel.Cells[rowSum,colSum],excel.Cells[rowSum,colIndex]).Interior.ColorIndex = 19;// , 56
//
//
//
excel.Cells[2,2] = str;
//
//
//
xSt.get_Range(excel.Cells[2,2],excel.Cells[2,2]).Font.Bold = true;
xSt.get_Range(excel.Cells[2,2],excel.Cells[2,2]).Font.Size = 22;
//
//
//
xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Select();
xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Columns.AutoFit();
//
//
//
xSt.get_Range(excel.Cells[2,2],excel.Cells[2,colIndex]).Select();
xSt.get_Range(excel.Cells[2,2],excel.Cells[2,colIndex]).HorizontalAlignment = XlHAlign.xlHAlignCenterAcrossSelection;
//
//
//
xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Borders.LineStyle = 1;
xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,2]).Borders[XlBordersIndex.xlEdgeLeft].Weight = XlBorderWeight.xlThick;//
xSt.get_Range(excel.Cells[4,2],excel.Cells[4,colIndex]).Borders[XlBordersIndex.xlEdgeTop].Weight = XlBorderWeight.xlThick;//
xSt.get_Range(excel.Cells[4,colIndex],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeRight].Weight = XlBorderWeight.xlThick;//
xSt.get_Range(excel.Cells[rowSum,2],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeBottom].Weight = XlBorderWeight.xlThick;//
//
//
//
excel.Visible=true;

//xSt.Export(Server.MapPath(".")+"\\"+this.xlfile.Text+".xls",SheetExportActionEnum.ssExportActionNone,Microsoft.Office.Interop.OWC.SheetExportFormat.ssExportHTML);
xBk.SaveCopyAs(Server.MapPath(".")+"\\"+this.xlfile.Text+".xls");

ds = null;
xBk.Close(false, null,null);

excel.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(xBk);
System.Runtime.InteropServices.Marshal.ReleaseComObject(excel);
System.Runtime.InteropServices.Marshal.ReleaseComObject(xSt);
xBk = null;
excel = null;
xSt = null;
GC.Collect();
string path = Server.MapPath(this.xlfile.Text+".xls");

System.IO.FileInfo file = new System.IO.FileInfo(path);
Response.Clear();
Response.Charset="GB2312";
Response.ContentEncoding=System.Text.Encoding.UTF8;
// , " / "
Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name));
// , ,
Response.AddHeader("Content-Length", file.Length.ToString());

// ,
Response.ContentType = "application/ms-excel";

//
Response.WriteFile(file.FullName);
//

Response.End();
}


위의 부분은 모두 내보낼 execl 데이터를 브라우저에 직접 파일 흐름을 출력합니다. 다음 방법은 서버의 어떤 폴더에 저장한 다음 클라이언트에게 파일을 보내는 것입니다.이렇게 하면 다른 기능을 실현하기 위해 내보낸 파일을 오래 저장할 수 있다.
5、execl 파일을 서버에 내보내고 다운로드합니다.
2. winForm에서 Execl을 내보내는 방법:
1. 방법1:
 
  
public void Out2Excel(string sTableName,string url)
{
Excel.Application oExcel=new Excel.Application();
Workbooks oBooks;
Workbook oBook;
Sheets oSheets;
Worksheet oSheet;
Range oCells;
string sFile="",sTemplate="";
//
System.Data.DataTable dt=TableOut(sTableName).Tables[0];

sFile=url+"\\myExcel.xls";
sTemplate=url+"\\MyTemplate.xls";
//
oExcel.Visible=false;
oExcel.DisplayAlerts=false;
//
oBooks=oExcel.Workbooks;
oBooks.Open(sTemplate,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing, Type.Missing, Type.Missing);
oBook=oBooks.get_Item(1);
oSheets=oBook.Worksheets;
oSheet=(Worksheet)oSheets.get_Item(1);
// sheet
oSheet.Name="Sheet1";

oCells=oSheet.Cells;
// dumpdata , Excel
DumpData(dt,oCells);
//
oSheet.SaveAs(sFile,Excel.XlFileFormat.xlTemplate,Type.Missing,Type.Missing, Type.Missing, Type.Missing, Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing);
oBook.Close(false, Type.Missing,Type.Missing);
// Excel, COM
oExcel.Quit();

GC.Collect();
KillProcess("Excel");
}

private void KillProcess(string processName)
{
System.Diagnostics.Process myproc= new System.Diagnostics.Process();
//
try
{
foreach (Process thisproc in Process.GetProcessesByName(processName))
{
if(!thisproc.CloseMainWindow())
{
thisproc.Kill();
}
}
}
catch(Exception Exc)
{
throw new Exception("",Exc);
}
}

2. 방법2:
 
  
protected void ExportExcel()
{
gridbind();

if(ds1==null) return;

string saveFileName="";
// bool fileSaved=false;
SaveFileDialog saveDialog=new SaveFileDialog();
saveDialog.DefaultExt ="xls";
saveDialog.Filter="Excel |*.xls";
saveDialog.FileName ="Sheet1";
saveDialog.ShowDialog();
saveFileName=saveDialog.FileName;
if(saveFileName.IndexOf(":")<0) return; //
// excelapp.Workbooks.Open (App.path & \\ .xls)


Excel.Application xlApp=new Excel.Application();
object missing=System.Reflection.Missing.Value;


if(xlApp==null)
{
MessageBox.Show(" Excel , Excel");
return;
}
Excel.Workbooks workbooks=xlApp.Workbooks;
Excel.Workbook workbook=workbooks.Add(Excel.XlWBATemplate.xlWBATWorksheet);
Excel.Worksheet worksheet=(Excel.Worksheet)workbook.Worksheets[1];// sheet1
Excel.Range range;


string oldCaption=Title_label .Text.Trim ();
long totalCount=ds1.Tables[0].Rows.Count;
long rowRead=0;
float percent=0;

worksheet.Cells[1,1]=Title_label .Text.Trim ();
//
for(int i=0;i{
worksheet.Cells[2,i+1]=ds1.Tables[0].Columns.ColumnName;
range=(Excel.Range)worksheet.Cells[2,i+1];
range.Interior.ColorIndex = 15;
range.Font.Bold = true;

}
//
Caption .Visible = true;
for(int r=0;r{
for(int i=0;i{
worksheet.Cells[r+3,i+1]=ds1.Tables[0].Rows[r];
}
rowRead++;
percent=((float)(100*rowRead))/totalCount;
this.Caption.Text= " ["+ percent.ToString("0.00") +"%]...";
Application.DoEvents();
}
worksheet.SaveAs(saveFileName,missing,missing,missing,missing,missing,missing,missing,missing);

this.Caption.Visible= false;
this.Caption.Text= oldCaption;

range=worksheet.get_Range(worksheet.Cells[2,1],worksheet.Cells[ds1.Tables[0].Rows.Count+2,ds1.Tables[0].Columns.Count]);
range.BorderAround(Excel.XlLineStyle.xlContinuous,Excel.XlBorderWeight.xlThin,Excel.XlColorIndex.xlColorIndexAutomatic,null);

range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].ColorIndex = Excel.XlColorIndex.xlColorIndexAutomatic;
range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].LineStyle =Excel.XlLineStyle.xlContinuous;
range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].Weight =Excel.XlBorderWeight.xlThin;

if(ds1.Tables[0].Columns.Count>1)
{
range.Borders[Excel.XlBordersIndex.xlInsideVertical].ColorIndex=Excel.XlColorIndex.xlColorIndexAutomatic;
}
workbook.Close(missing,missing,missing);
xlApp.Quit();
}



3. 부주:
모두 execl 내보내기 기능을 실현하지만 asp.net와 winform의 프로그램에서 실현된 코드는 각각 다르다.asp.net에서는 서버에서 데이터를 읽고 서버에서 ms-execl 형식으로 리스폰스로 브라우저(클라이언트)에 출력합니다.winform에서는 데이터를 클라이언트(winform 실행단이 클라이언트이기 때문에)에 읽고 클라이언트가 설치한 오피스 구성 요소를 호출하여 읽은 데이터를execl의 워크북에 쓴다.
 
  
SqlConnection conn=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["conn"]);
SqlDataAdapter da=new SqlDataAdapter("select * from tb1",conn);
DataSet ds=new DataSet();
da.Fill(ds,"table1");
DataTable dt=ds.Tables["table1"];
string name=System.Configuration.ConfigurationSettings.AppSettings["downloadurl"].ToString()+DateTime.Today.ToString("yyyyMMdd")+new Random(DateTime.Now.Millisecond).Next(10000).ToString()+".csv";// web.config downloadurl , +4
FileStream fs=new FileStream(name,FileMode.Create,FileAccess.Write);
StreamWriter sw=new StreamWriter(fs,System.Text.Encoding.GetEncoding("gb2312"));
sw.WriteLine(" , , ");
foreach(DataRow dr in dt.Rows)
{
sw.WriteLine(dr["ID"]+","+dr["vName"]+","+dr["iAge"]);
}
sw.Close();
Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(name));
Response.ContentType = "application/ms-excel";// ,
Response.WriteFile(name); //
Response.End();

좋은 웹페이지 즐겨찾기