datatable 생 성 엑셀 과 엑셀 삽입 그림 예제 상세 설명
ApplicationClass xlsApp = new ApplicationClass(); // 1. Excel , Excel 。
if (xlsApp == null)
{
// , null Excel
}
1.기 존 Excel 파일 열기
Workbook workbook = xlsApp.Workbooks.Open(excelFilePath, 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);
Worksheet mySheet = workbook.Sheets[1] as Worksheet; // sheet
mySheet.Name = "testsheet"; // sheet
2.시트 페이지 복사
mySheet.Copy(Type.Missing, workbook.Sheets[1]); // mySheet sheet , mySheet (2), testsheet(2), ,Worksheet
복사 방법의 두 가지 매개 변 수 를 주의 하 십시오.새로운 sheet 페이지 를 복사 하 는 것 이 지정 한 sheet 페이지 의 앞 이나 뒤에 있 는 것 을 말 합 니 다.위의 예 는 복 제 된 sheet 페이지 가 첫 번 째 sheet 페이지 뒤에 있 는 것 을 말 합 니 다.3.시트 페이지 삭제
xlsApp.DisplayAlerts = false; // sheet , fasle。
(xlsApp.ActiveWorkbook.Sheets[1] as Worksheet).Delete();
4.sheet 페이지 선택
(xlsApp.ActiveWorkbook.Sheets[1] as Worksheet).Select(Type.Missing); // sheet
5.엑셀 파일 따로 저장
workbook.Saved = true;
workbook.SaveCopyAs(filepath);
6.엑셀 자원 방출
workbook.Close(true, Type.Missing, Type.Missing);
workbook = null;
xlsApp.Quit();
xlsApp = null;
일반적으로 우 리 는 DataTable 을 전송 하여 엑셀 코드 를 생 성 합 니 다.
/// <summary>
///
/// </summary>
/// <param name="dt"></param>
protected void ExportExcel(DataTable dt)
{
if (dt == null||dt.Rows.Count==0) return;
Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();
if (xlApp == null)
{
return;
}
System.Globalization.CultureInfo CurrentCI = System.Threading.Thread.CurrentThread.CurrentCulture;
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");
Microsoft.Office.Interop.Excel.Workbooks workbooks = xlApp.Workbooks;
Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1];
Microsoft.Office.Interop.Excel.Range range;
long totalCount = dt.Rows.Count;
long rowRead = 0;
float percent = 0;
for (int i = 0; i < dt.Columns.Count; i++)
{
worksheet.Cells[1, i + 1] = dt.Columns[i].ColumnName;
range = (Microsoft.Office.Interop.Excel.Range)worksheet.Cells[1, i + 1];
range.Interior.ColorIndex = 15;
range.Font.Bold = true;
}
for (int r = 0; r < dt.Rows.Count; r++)
{
for (int i = 0; i < dt.Columns.Count; i++)
{
worksheet.Cells[r + 2, i + 1] = dt.Rows[r][i].ToString();
}
rowRead++;
percent = ((float)(100 * rowRead)) / totalCount;
}
xlApp.Visible = true;
}
엑셀 에 그림 을 삽입 하려 면 코드 를 한 줄 에 추가 하면 됩 니 다.다음 과 같 습 니 다.
protected void ExportExcel(DataTable dt)
{
if (dt == null || dt.Rows.Count == 0) return;
Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();
if (xlApp == null)
{
return;
}
System.Globalization.CultureInfo CurrentCI = System.Threading.Thread.CurrentThread.CurrentCulture;
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");
Microsoft.Office.Interop.Excel.Workbooks workbooks = xlApp.Workbooks;
Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1];
Microsoft.Office.Interop.Excel.Range range;
long totalCount = dt.Rows.Count;
long rowRead = 0;
float percent = 0;
for (int i = 0; i < dt.Columns.Count; i++)
{
worksheet.Cells[1, i + 1] = dt.Columns[i].ColumnName;
range = (Microsoft.Office.Interop.Excel.Range)worksheet.Cells[1, i + 1];
range.Interior.ColorIndex = 15;
}
for (int r = 0; r < dt.Rows.Count; r++)
{
for (int i = 0; i < dt.Columns.Count; i++)
{
try
{
worksheet.Cells[r + 2, i + 1] = dt.Rows[r][i].ToString();
}
catch
{
worksheet.Cells[r + 2, i + 1] = dt.Rows[r][i].ToString().Replace("=", "");
}
}
rowRead++;
percent = ((float)(100 * rowRead)) / totalCount;
}
worksheet.Shapes.AddPicture("C:\\Users\\spring\\Desktop\\1.gif", Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, 100, 200, 200, 300);
worksheet.Shapes.AddTextEffect(Microsoft.Office.Core.MsoPresetTextEffect.msoTextEffect1, "123456", "Red", 15, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoTrue, 150, 200);
xlApp.Visible = true;
}
우 리 는 다음 과 같이 호출 합 니 다.
public void GenerateExcel()
{
DataTable dt = new DataTable();
dt.Columns.Add("Name", typeof(string));
dt.Columns.Add("Age", typeof(string));
DataRow dr = dt.NewRow();
dr["Name"] = "spring";
dr["Age"] = "20";
dt.Rows.Add(dr);
dt.AcceptChanges();
ExportExcel(dt);
}
그 중에서 다음 과 같은 코드 의 역할 은?
worksheet.Shapes.AddPicture("C:\\Users\\spring\\Desktop\\1.gif", Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, 100, 200, 200, 300);
Excel 의 지정 한 위치 에 그림 을 추가 합 니 다.
worksheet.Shapes.AddTextEffect(Microsoft.Office.Core.MsoPresetTextEffect.msoTextEffect1, "123456", "Red", 15, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoTrue, 150, 200);
Excel 의 지정 한 위치 에 텍스트 상자 와 내용 을 추가 합 니 다.우 리 는 이렇게 엑셀 베이스 의 기 류 를 설계 할 수 있다.
먼저 ExcelBE.cs 를 만 듭 니 다:
public class ExcelBE
{
private int _row = 0;
private int _col = 0;
private string _text = string.Empty;
private string _startCell = string.Empty;
private string _endCell = string.Empty;
private string _interiorColor = string.Empty;
private bool _isMerge = false;
private int _size = 0;
private string _fontColor = string.Empty;
private string _format = string.Empty;
public ExcelBE(int row, int col, string text, string startCell, string endCell, string interiorColor, bool isMerge, int size, string fontColor, string format)
{
_row = row;
_col = col;
_text = text;
_startCell = startCell;
_endCell = endCell;
_interiorColor = interiorColor;
_isMerge = isMerge;
_size = size;
_fontColor = fontColor;
_format = format;
}
public ExcelBE()
{ }
public int Row
{
get { return _row; }
set { _row = value; }
}
public int Col
{
get { return _col; }
set { _col = value; }
}
public string Text
{
get { return _text; }
set { _text = value; }
}
public string StartCell
{
get { return _startCell; }
set { _startCell = value; }
}
public string EndCell
{
get { return _endCell; }
set { _endCell = value; }
}
public string InteriorColor
{
get { return _interiorColor; }
set { _interiorColor = value; }
}
public bool IsMerge
{
get { return _isMerge; }
set { _isMerge = value; }
}
public int Size
{
get { return _size; }
set { _size = value; }
}
public string FontColor
{
get { return _fontColor; }
set { _fontColor = value; }
}
public string Formart
{
get { return _format; }
set { _format = value; }
}
}
다음은 Excel Base.cs 를 만 듭 니 다.
public class ExcelBase
{
private Microsoft.Office.Interop.Excel.Application app = null;
private Microsoft.Office.Interop.Excel.Workbook workbook = null;
private Microsoft.Office.Interop.Excel.Worksheet worksheet = null;
private Microsoft.Office.Interop.Excel.Range workSheet_range = null;
public ExcelBase()
{
createDoc();
}
public void createDoc()
{
try
{
app = new Microsoft.Office.Interop.Excel.Application();
app.Visible = true;
workbook = app.Workbooks.Add(1);
worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Sheets[1];
}
catch (Exception e)
{
Console.Write("Error");
}
finally
{
}
}
public void InsertData(ExcelBE be)
{
worksheet.Cells[be.Row, be.Col] = be.Text;
workSheet_range = worksheet.get_Range(be.StartCell, be.EndCell);
workSheet_range.MergeCells = be.IsMerge;
workSheet_range.Interior.Color = GetColorValue(be.InteriorColor);
workSheet_range.Borders.Color = System.Drawing.Color.Black.ToArgb();
workSheet_range.ColumnWidth = be.Size;
workSheet_range.Font.Color = string.IsNullOrEmpty(be.FontColor) ? System.Drawing.Color.White.ToArgb() : System.Drawing.Color.Black.ToArgb();
workSheet_range.NumberFormat = be.Formart;
}
private int GetColorValue(string interiorColor)
{
switch (interiorColor)
{
case "YELLOW":
return System.Drawing.Color.Yellow.ToArgb();
case "GRAY":
return System.Drawing.Color.Gray.ToArgb();
case "GAINSBORO":
return System.Drawing.Color.Gainsboro.ToArgb();
case "Turquoise":
return System.Drawing.Color.Turquoise.ToArgb();
case "PeachPuff":
return System.Drawing.Color.PeachPuff.ToArgb();
default:
return System.Drawing.Color.White.ToArgb();
}
}
}
호출 된 코드 는 다음 과 같 습 니 다:
private void btnRun_Click(object sender, EventArgs e)
{
ExcelBase excel = new ExcelBase();
//creates the main header
ExcelBE be = null;
be = new ExcelBE (5, 2, "Total of Products", "B5", "D5", "YELLOW", true, 10, "n",null);
excel.InsertData(be);
//creates subheaders
be = new ExcelBE (6, 2, "Sold Product", "B6", "B6", "GRAY", true, 10, "",null);
excel.InsertData(be);
be=new ExcelBE(6, 3, "", "C6", "C6", "GRAY", true, 10, "",null);
excel.InsertData(be);
be=new ExcelBE (6, 4, "Initial Total", "D6", "D6", "GRAY", true, 10, "",null);
excel.InsertData(be);
//add Data to cells
be=new ExcelBE (7, 2, "114287", "B7", "B7",null,false,10,"", "#,##0");
excel.InsertData(be);
be=new ExcelBE (7, 3, "", "C7", "C7", null,false,10,"",null);
excel.InsertData(be);
be = new ExcelBE(7, 4, "129121", "D7", "D7", null, false, 10, "", "#,##0");
excel.InsertData(be);
//add percentage row
be = new ExcelBE(8, 2, "", "B8", "B8", null, false, 10, "", "");
excel.InsertData(be);
be = new ExcelBE(8, 3, "=B7/D7", "C8", "C8", null, false, 10, "", "0.0%");
excel.InsertData(be);
be = new ExcelBE(8, 4, "", "D8", "D8", null, false, 10, "", "");
excel.InsertData(be);
//add empty divider
be = new ExcelBE(9, 2, "", "B9", "D9", "GAINSBORO", true, 10, "",null);
excel.InsertData(be);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Datatable의 Laravel 사용자 정의 내보내기 버튼이 기사에서는 데이터 테이블에서 laravel 사용자 정의 내보내기 버튼을 볼 수 있습니다. Datatable은 내장 버튼 기능을 제공하며 html5 버튼도 제공합니다. 따라서 요구 사항에 따라 테이블에 데이터 테이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.