Aspose.Cells Excel 생성 서버는 오피스를 설치하지 않아도 됩니다.
5485 단어 c#Asp.NetAspose.CellsExcel
///
///
///
/// DataTable
///
///
public static void Export(DataTable dt, string sheetName, HttpResponseBase Response)
{
Workbook workbook = new Workbook();//
Worksheet sheet = (Worksheet)workbook.Worksheets[0];//
sheet.Name = sheetName;
Cells cells = sheet.Cells;//
//
Style styleTitle = workbook.Styles[workbook.Styles.Add()];//
styleTitle.HorizontalAlignment = TextAlignmentType.Center;//
styleTitle.Font.Name = " ";//
styleTitle.Font.Size = 15;//
styleTitle.Font.IsBold = true;//
// 2
Style style2 = workbook.Styles[workbook.Styles.Add()];//
style2.HorizontalAlignment = TextAlignmentType.Center;//
style2.Font.Name = " ";//
style2.Font.Size = 12;//
style2.Font.IsBold = true;//
//style2.IsTextWrapped = true;//
style2.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;
style2.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin;
style2.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin;
style2.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin;
// 3
Style style3 = workbook.Styles[workbook.Styles.Add()];//
style3.HorizontalAlignment = TextAlignmentType.Left;//
style3.Font.Name = " ";//
style3.Font.Size = 11;//
style3.IsTextWrapped = true;//
style3.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;
style3.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin;
style3.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin;
style3.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin;
int Colnum = dt.Columns.Count;//
int Rownum = dt.Rows.Count;//
// 1
cells.Merge(0, 0, 1, Colnum);//
cells[0, 0].PutValue(sheetName);//
cells[0, 0].SetStyle(styleTitle);
cells.SetRowHeight(0, 35);
// 2
for (int i = 0; i < Colnum; i++)
{
cells[1, i].PutValue(dt.Columns[i].ColumnName);
cells[1, i].SetStyle(style2);
cells.SetRowHeight(1, 25);//
//
//cells.SetColumnWidth(i, 30);
}
//
for (int i = 0; i < Rownum; i++)
{
for (int k = 0; k < Colnum; k++)
{
cells[2 + i, k].PutValue(dt.Rows[i][k].ToString());
cells[2 + i, k].SetStyle(style3);
}
cells.SetRowHeight(2 + i, 20);
}
sheet.AutoFitColumns();//
//sheet.AutoFitRows();//
// Excel
Response.Clear();
Response.Buffer = true;
Response.Charset = "utf-8";
string filename = HttpUtility.UrlEncode(DateTime.Now.ToString(sheetName));
Response.AppendHeader("Content-Disposition", "attachment;filename=" + filename + ".xls");
Response.ContentEncoding = System.Text.Encoding.UTF8;
Response.ContentType = "application/ms-excel";
Response.BinaryWrite(workbook.SaveToStream().ToArray());
Response.End();
Response.Close();
}
테이블 작성 및 Excel 다운로드 생성 명령 호출
List activityList = ActivityResult.Data;
if (activityList.Count>0)
{
//
DataTable dt = new DataTable();
dt.Columns.Add(" ");
dt.Columns.Add(" ");
dt.Columns.Add(" ( )");
dt.Columns.Add(" ( )");
dt.Columns.Add(" ");
dt.Columns.Add(" ( )");
dt.Columns.Add(" ( )");
dt.Columns.Add(" ");
//
foreach (ActivityStatisticsModel activity in activityList)
{
DataRow dr = dt.NewRow();
dr[" "] = activity.ActivityName;
dr[" "] = activity.BrowseCount;
dr[" ( )"] = activity.AnderBroCount;
dr[" ( )"] = activity.IosBroCount;
dr[" "] = activity.ShareCount;
dr[" ( )"] = activity.AnderShaCount;
dr[" ( )"] = activity.IosShaCount;
dr[" "] = activity.TotalCount;
dt.Rows.Add(dr);
}
// Excel
OfficeOperation.Export(dt, " ", Response);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
C#Task를 사용하여 비동기식 작업을 수행하는 방법라인이 완성된 후에 이 라인을 다시 시작할 수 없습니다.반대로 조인(Join)만 결합할 수 있습니다 (프로세스가 현재 라인을 막습니다). 임무는 조합할 수 있는 것이다. 연장을 사용하여 그것들을 한데 연결시키는 것이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.