Aspose.Cells 를 사용 하여 가 져 오기 내 보 내기
9059 단어 Aspose.Cells가 져 오기도 출
이것 은 자신 이 정리 한 가 져 오기 내 보 내기 클래스 입 니 다.설명 이 있 습 니 다.
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aspose.Cells;
namespace Lzd.Mvc.EasyUi.Common.ExcelUtil
{
///
/// excel
///
///
public class BaseExcelUtil
{
private Workbook m_Wb = null;
///
/// Excel
///
/// Excel +
/// Excel
public byte[] CreateExcel(string url)
{
FileStream fs = null;
try
{
// Excel
fs = new FileStream(url, FileMode.Open, FileAccess.Read, FileShare.Read);
m_Wb = new Workbook();
m_Wb.Open(fs);
setValue(m_Wb);
//
return m_Wb.SaveToStream().ToArray();
}
catch (Exception ex)
{
throw ex;
}
finally
{
fs.Close();
}
}
///
/// Excel
/// datable
///
///
public virtual void setValue(Workbook wb)
{
throw new Exception("The method or operation is not implemented.");
}
///
/// Excel
///
/// Excel +
/// Excel
public DataTable GetExcel(string url)
{
FileStream fs = null;
try
{
// Excel
fs = new FileStream(url, FileMode.Open, FileAccess.Read, FileShare.Read);
m_Wb = new Workbook();
m_Wb.Open(fs);
// Excel
return getValue(m_Wb);
}
finally
{
fs.Close();
}
}
///
/// Excel
///
///
public virtual DataTable getValue(Workbook wb)
{
throw new Exception("The method or operation is not implemented.");
}
///
///
///
///
///
public void putValue(Cell c, object value)
{
try
{
if (value == null || object.Equals(value, DBNull.Value) || value.ToString().Trim().Length == 0)
{
}
else
{
c.PutValue(value.ToString());
}
}
catch (Exception)
{
c.PutValue("--");
}
}
///
///
///
///
///
public void putValueDouble(Cell c, object value)
{
try
{
if (value == null || object.Equals(value, DBNull.Value) || value.ToString().Trim().Length == 0)
{
}
else
{
c.PutValue(Decimal.Parse(value.ToString()));
}
}
catch (Exception)
{
c.PutValue(value.ToString());
}
}
///
///
///
///
///
public void putDateValue(Cell c, object value)
{
try
{
if (value == null || object.Equals(value, DBNull.Value) || value.ToString().Trim().Length == 0)
{
}
else
{
c.PutValue(DateTime.Parse(value.ToString()));
}
}
catch (Exception)
{
c.PutValue(value.ToString());
}
}
}
}
///기본 클래스 구현
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Aspose.Cells;
namespace Lzd.Mvc.EasyUi.Common.ExcelUtil
{
///
/// Excel
///
public class ExcelUtil :BaseExcelUtil
{
private DataTable dt;
private string title;
public ExcelUtil() {
}
///
///
///
public int FirstRow { get; set; }
///
///
///
public int FirstColumns { get; set; }
///
/// excel
///
public string Title
{
get { return title; }
set { title = value; }
}
private string fileName;
///
///
///
public string FileName
{
get { return fileName; }
set { fileName = value; }
}
public DataTable Dt
{
get { return dt; }
set { dt = value; }
}
public bool Flag
{
set;
get;
}
///
///
///
public override void setValue(Workbook wb)
{
int index = 0;
Worksheet ws = null;
int rcount = dt.Rows.Count, columns = dt.Columns.Count;
if (dt != null && dt.Rows.Count > 0)
{
index = wb.Worksheets.AddCopy(0);
ws = wb.Worksheets[index];
ws.Name = FileName.Replace(".xls", "");
try
{
putValue(ws.Cells[0, 0], this.title);
int i = 1;
for (int j = 0; j < columns; j++)
{
putValue(ws.Cells[1, j], dt.Columns[j].ColumnName);
}
for (int j = 0; j < rcount; j++)
{
i++;
for (int h = 0; h < columns; h++)
{
putValue(ws.Cells[i, h], dt.Rows[j][h].ToString());
}
}
wb.Worksheets.RemoveAt(0);
}
catch (Exception ex)
{
throw ex;
}
}
}
///
/// excel
///
///
///
///
///
///
public override DataTable getValue(Workbook wb)
{
Worksheet sheet = wb.Worksheets[0];
Cells cells = sheet.Cells;
return cells.ExportDataTableAsString(FirstRow, FirstColumns, cells.MaxDataRow + 1, cells.MaxDataColumn + 1, true);
}
}
}
////호출 방법 내 보 내기
public ActionResult ToExcel() {
List list = new List();
for (int i = 0; i < 100; i++)
{
UserInfo info = new UserInfo();
info.Age = i.ToString();
info.ID = i;
info.Name = " " + i;
list.Add(info);
}
/// list datatable
DataTable dt= DataTableHelper.IListToDataTable(list);
//
ExcelUtil exc = new ExcelUtil();
exc.Dt = dt;
exc.FileName = " .xls";
exc.Title = " ";
//
string url = Server.MapPath("/Content/Down/template.xls");
byte[] data = exc.CreateExcel(url);
//
Response.AppendHeader("Content-Disposition", "attachment; filename=" + exc.FileName);//HttpUtility.UrlEncode(r.FileName, Encoding.UTF8));
Response.ContentType = "application/ms-excel";
Response.AddHeader("Content-Length", data.Length.ToString());
Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
Response.BinaryWrite(data);
System.Web.HttpContext.Current.ApplicationInstance.CompleteRequest();
return Content("ss");
}
//호출 방법 가 져 오기
public ActionResult ImportExcel()
{
string url = Server.MapPath("/Content/Down/Import.xls");
ExcelUtil exc = new ExcelUtil();
exc.FirstRow = 1;
exc.FirstColumns = 0;
DataTable dt= exc.GetExcel(url);
return Content("ss");
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Aspose.Cells 를 이용 하여 만능 도 출 기능 을 실현 하 다최근 에 프로젝트 를 했 습 니 다.고객 들 은 엑셀 내 보 내기 기능 에 대해 특별한 관심 을 가지 고 있 습 니 다.거의 모든 목록 데이터 에 엑셀 내 보 내기 기능 을 지원 하 라 고 요구 합 니 다.코드 중복...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.