控件bin文件下载地址:https://download.csdn.net/download/u012949335/10610726
@{
ViewBag.Title = "xx";
}
<script type="text/javascript" language="javascript">
function getparam() {
var param = {};
param.sear = $("#sear").textbox('getValue');
return param;
}
//这样写是为了传参数
function print_dc()
{
var param = getparam();//参数
var formobj=$("<form id='form1' action='dcExcel' method='post'></from>");
//参数
$("body").append(formobj);
$.each(param,function(i,o){
var input1=$("<input type='hidden' value='"+o+"' name='"+i+"'/>");
input1.appendTo(formobj);
}); formobj.submit();
}
</script>
<input class="easyui-textbox" id="sear" data-options="width:80"/>
<button type="button" class="but-primary" onclick="print_dc()">
汇总</button> public ActionResult dcExcel(stream sear)
{
DataTable dt = dal.GetKslyTj(" kd='"+sear+"'");
var stream=PrintExcelApose.PrintExcel(dt, Server.MapPath(Path.Combine("../Ex/dd/", "ddd.xls")), "xx信息");
return File(stream, "application/octet-stream", "xx信息.xls"); } using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using Aspose.Cells;
using System.IO; namespace YidiTutor.Common
{
public class PrintExcelApose
{
public PrintExcelApose()
{ } /// <summary>
/// 打印Excel模板
/// </summary>
/// <param name="dt">数据源Datatable</param>
/// <param name="path">Excel路径</param>
/// <param name="filename">导出的文件名称</param>
public static byte[] PrintExcel(DataTable dt, string path, string filename)
{ //(&=[yddt].xh)
filename = filename + ".xls";
Aspose.Cells.WorkbookDesigner designer = new Aspose.Cells.WorkbookDesigner();
dt.TableName = "yddt";
designer.Open(path); //打开Excel模板
designer.SetDataSource(dt);//设置数据源
designer.Process();//自动赋值
if (System.IO.File.Exists(filename))
System.IO.File.Delete(filename);
// designer.Save(System.Web.HttpUtility.UrlDecode(System.Text.Encoding.UTF8.GetBytes(filename),System.Text.Encoding.UTF8), Aspose.Cells.SaveType.OpenInExcel, Aspose.Cells.FileFormatType.Excel2003, HttpContext.Current.Response); return designer.Workbook.SaveToStream().ToArray();
//HttpContext.Current.Response.End(); } /// <summary>
/// 打印Excel模板
/// </summary>
/// <param name="dtinfo">datatable数据</param>
/// <param name="dtlist">datatable数据源</param>
/// <param name="dict">Dictionary数据</param>
/// <param name="path">Excel地址</param>
/// <param name="filename">导出文件名称</param>
/// <param name="protect">是否可编辑,true不可修改,false可修改</param>
public static byte[] PrintExcel(DataTable dtinfo, DataTable dtlist, Dictionary<string, string> dict, string path, string filename, bool protect = false)
{
filename = filename + ".xls";
Aspose.Cells.WorkbookDesigner designer = new Aspose.Cells.WorkbookDesigner();
dtlist.TableName = "yddt";
designer.Open(path); //打开Excel模板
Workbook workbook = designer.Workbook; //工作簿
if (dtinfo != null && dtinfo.Rows.Count > )
{
for (int i = ; i < dtinfo.Rows.Count; i++)
{
for (int k = ; k < dtinfo.Columns.Count; k++)
{
string column = dtinfo.Columns[k].ColumnName;
workbook.Worksheets[].Replace("$" + column.ToLower() + "$", dtinfo.Rows[i][column].ToString());
}
}
}
if (dict != null)
{
foreach (string j in dict.Keys)
{
workbook.Worksheets[].Replace("$" + j.ToLower() + "$", dict[j].ToString());
}
}
if (protect)
workbook.Worksheets[].Protect(ProtectionType.All, "xakj..123", "");
designer.SetDataSource(dtlist);//设置数据源
designer.Process();//自动赋值
if (System.IO.File.Exists(filename))
System.IO.File.Delete(filename);
// designer.Save(System.Web.HttpUtility.UrlEncode(System.Text.Encoding.UTF8.GetBytes(filename)), Aspose.Cells.SaveType.OpenInExcel, Aspose.Cells.FileFormatType.Excel2003, HttpContext.Current.Response);
//designer.Save(System.Web.HttpUtility.UrlDecode(System.Text.Encoding.UTF8.GetBytes(filename),System.Text.Encoding.UTF8), Aspose.Cells.SaveType.OpenInExcel, Aspose.Cells.FileFormatType.Excel2003, HttpContext.Current.Response);
//HttpContext.Current.Response.End();
return designer.Workbook.SaveToStream().ToArray(); } /// <summary>
/// 打印Excel模板
/// </summary>
/// <param name="printexcel">填充Excel数据类</param>
public static byte[] PrintExcel(PrintExcel printexcel)
{
printexcel.filename = printexcel.filename + ".xls";
Aspose.Cells.WorkbookDesigner designer = new Aspose.Cells.WorkbookDesigner();
printexcel.dtlist.TableName = "yddt";
designer.Open(printexcel.path); //打开Excel模板
MergeExcel merge = printexcel.merge;//合并单元格
Workbook workbook = designer.Workbook; //工作簿
if (printexcel.dtinfo != null && printexcel.dtinfo.Rows.Count > )
{
for (int i = ; i < printexcel.dtinfo.Rows.Count; i++)
{
for (int k = ; k < printexcel.dtinfo.Columns.Count; k++)
{
string column = printexcel.dtinfo.Columns[k].ColumnName;
workbook.Worksheets[].Replace("$" + column.ToLower() + "$", printexcel.dtinfo.Rows[i][column].ToString());
}
}
}
if (printexcel.dict != null)
{
foreach (string j in printexcel.dict.Keys)
{
workbook.Worksheets[].Replace("$" + j.ToLower() + "$", printexcel.dict[j].ToString());
}
}
if (printexcel.protect)
workbook.Worksheets[].Protect(ProtectionType.All, "xakj..123", "");
designer.SetDataSource(printexcel.dtlist);//设置数据源
designer.Process();//自动赋值 //合格单元格
if (printexcel.dtlist != null && printexcel.dtlist.Rows.Count > )
{
Aspose.Cells.Worksheet sheet = designer.Workbook.Worksheets[];
Cells cel = sheet.Cells;
List<int> column = printexcel.merge.firstColumn;
int j = ;
for (int i = ; i < printexcel.dtlist.Rows.Count; i++)
{
for (int kk = ; kk < column.Count; kk++)
{
cel.Merge(merge.firstRow, column[kk], Convert.ToInt32(printexcel.dtlist.Rows[i][merge.columnname].ToString().Trim()), merge.columnNumber);
cel[merge.firstRow, column[kk]].PutValue(j);
i = i + Convert.ToInt32(printexcel.dtlist.Rows[i][merge.columnname].ToString().Trim()) - ;
j++;
}
}
} if (System.IO.File.Exists(printexcel.filename))
System.IO.File.Delete(printexcel.filename);
//designer.Save(System.Web.HttpUtility.UrlEncode(System.Text.Encoding.UTF8.GetBytes(printexcel.filename)), Aspose.Cells.SaveType.OpenInExcel, Aspose.Cells.FileFormatType.Excel2003, HttpContext.Current.Response);
//HttpContext.Current.Response.End();
return designer.Workbook.SaveToStream().ToArray();
}
} /// <summary>
/// 填充Excel数据
/// </summary>
public class PrintExcel
{
/// <summary>
/// 数据
/// </summary>
public DataTable dtinfo;
/// <summary>
/// 数据源
/// </summary>
public DataTable dtlist;
/// <summary>
/// 数据
/// </summary>
public Dictionary<string, string> dict;
/// <summary>
/// Excel地址
/// </summary>
public string path;
/// <summary>
/// 导出Excel名称
/// </summary>
public string filename;
/// <summary>
/// 是否可编辑
/// </summary>
public bool protect = false;
/// <summary>
/// 合并单元格
/// </summary>
public MergeExcel merge;
}
/// <summary>
/// 合格单元格
/// </summary>
public class MergeExcel
{
/// <summary>
/// 第几行
/// </summary>
public int firstRow;
/// <summary>
/// 合并的第几列
/// </summary>
public List<int> firstColumn;
/// <summary>
/// 合并行数
/// </summary>
public int rowNumber;
/// <summary>
/// 合并的列数
/// </summary>
public int columnNumber;
/// <summary>
/// datatable合并行数的列名称字段
/// </summary>
public string columnname;
} public class AsposeExcell
{
public static DataTable ExportToDataTableAsString(string excelFilePath, bool showTitle = true)
{
Workbook workbook = new Workbook();
workbook.Open(excelFilePath);
Cells cells = workbook.Worksheets[].Cells;
System.Data.DataTable dataTable2 = cells.ExportDataTableAsString(, , cells.MaxDataRow + , cells.MaxColumn + , showTitle);//showTitle
return dataTable2;
}
public static DataTable ExportToDataTableAsString(Stream stream, bool showTitle = true)
{
Workbook workbook = new Workbook();
workbook.Open(stream);
Cells cells = workbook.Worksheets[].Cells;
System.Data.DataTable dataTable2 = cells.ExportDataTableAsString(, , cells.MaxDataRow + , cells.MaxColumn + , showTitle);//showTitle
return dataTable2;
}
public static Stream FileToStream(string fileName)
{
// 打开文件
FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read);
// 读取文件的 byte[]
byte[] bytes = new byte[fileStream.Length];
fileStream.Read(bytes, , bytes.Length);
fileStream.Close();
// 把 byte[] 转换成 Stream
Stream stream = new MemoryStream(bytes);
return stream;
}
}
}

基于C#语言MVC框架Aspose.Cells控件导出Excel表数据的更多相关文章

  1. 基于C#语言MVC框架NPOI控件导出Excel表数据

    控件bin文件下载地址:https://download.csdn.net/download/u012949335/10610726@{ ViewBag.Title = "dcxx" ...

  2. 用Aspose.Cells控件读取Excel

    Aspose是一个很强大的控件,可以用来操作word,excel,ppt等文件,用这个控件来导入.导出数据非常方便.其中Aspose.Cells就是用来操作Excel的,功能有很多.我所用的是最基本的 ...

  3. C# Aspose.Cells控件读取Excel

    Workbook workbook = new Workbook(); workbook.Open("C:\\test.xlsx"); Cells cells = workbook ...

  4. 使用Aspose.Cell控件实现Excel高难度报表的生成(三)

    在之前几篇文章中,介绍了关于Apsose.cell这个强大的Excel操作控件的使用,相关文章如下: 使用Aspose.Cell控件实现Excel高难度报表的生成(一) 使用Aspose.Cell控件 ...

  5. 使用Aspose.Cell控件实现Excel高难度报表的生成(二)

    继续在上篇<使用Aspose.Cell控件实现Excel高难度报表的生成(一)>随笔基础上,研究探讨基于模板的Aspose.cell报表实现,其中提到了下面两种报表的界面,如下所示: 或者 ...

  6. 利用Aspose.Cell控件导入Excel非强类型的数据

    导入Excel的操作是非常常见的操作,可以使用Aspose.Cell.APOI.MyXls.OLEDB.Excel VBA等操作Excel文件,从而实现数据的导入,在导入数据的时候,如果是强类型的数据 ...

  7. 使用Aspose.Cell控件实现Excel高难度报表的生成

    1.使用Aspose.Cell控件实现Excel高难度报表的生成(一) http://www.cnblogs.com/wuhuacong/archive/2011/02/23/1962147.html ...

  8. aspose.cells根据模板导出excel

    又隔十多天没写博客了,最近都在忙项目的事情,公司人事变动也比较大,手头上就又多了一个项目.最近做用aspose.cells根据模板导出excel报价单的功能,顺便把相关的核心记下来,先上模板和导出的效 ...

  9. (转)使用Aspose.Cell控件实现Excel高难度报表的生成(一)

    本文章主要介绍报表的生成,基于Aspose.Cell控件的报表生成.谈到报表,估计大家都有所领悟以及个人的理解,总的来说,一般的报表生成,基本上是基于以下几种方式:一种是基于微软Excel内置的引擎来 ...

随机推荐

  1. PAT L2-010 排座位(floyd)

    布置宴席最微妙的事情,就是给前来参宴的各位宾客安排座位.无论如何,总不能把两个死对头排到同一张宴会桌旁!这个艰巨任务现在就交给你,对任何一对客人,请编写程序告诉主人他们是否能被安排同席. 输入格式: ...

  2. day9:vcp考试

    Q161. An administrator wants to select a Host Power Management Policy for an ESXi 6.x host that will ...

  3. win下php5.4安装ffmpeg-php扩展

    1.ffmpeg的官网没有提供ffmpeg-php dll的扩展下载. http://ffmpeg-php.sourceforge.net/ 虽然在http://sourceforge.net/上提供 ...

  4. PAT 1065 单身狗(25)(STL-map+思路+测试点分析)

    1065 单身狗(25 分) "单身狗"是中文对于单身人士的一种爱称.本题请你从上万人的大型派对中找出落单的客人,以便给予特殊关爱. 输入格式: 输入第一行给出一个正整数 N(≤  ...

  5. select查询

    4.2  查询功能 SQL的核心是查询.SQL的查询命令也称作SELECT命令,它的基本形式由SELECT-FROM-WHERE查询块组成,多个查询块可以嵌套执行. 以下表为以后的例子中使用表: 档案 ...

  6. 教你如何制作饼干icon教程

    Hello,不露又和大家见面了,今天给大家带来的是一个可爱Q弹的icon~ 看起来像块饼干是吧~ 做起来非常简单哦,快打开PS一起躁起来吧. 先来看看效果图: 步骤1:打开PS,新建一个800*600 ...

  7. 配置 Mysql 支持远程访问 并取消域名解析以提高链接速度

    1 配置远程访问 1.1 修改 my.cnf [mysqld] 段 bind-address = 0.0.0.0 //支持所有 ipv4 1.2 建立远程访问用户 mysql> grant al ...

  8. 【JAVA】通过URLConnection/HttpURLConnection发送HTTP请求的方法(一)

    Java原生的API可用于发送HTTP请求 即java.net.URL.java.net.URLConnection,JDK自带的类: 1.通过统一资源定位器(java.net.URL)获取连接器(j ...

  9. Product of integers

    https://github.com/Premiumlab/Python-for-Algorithms--Data-Structures--and-Interviews/blob/master/Moc ...

  10. java中配置JPA方法

    JPA全称Java Persistence API.JPA通过JDK 5.0注解或XML描述对象-关系表的映射关系,并将运行期的实体对象持久化到数据库中 使用JPA进行保存对象时,可以用对象来接收,例 ...