Aspose.Cells 对excel的使用总结
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.Office.Core;
using Aspose.Cells;
using System.IO;
using Aspose.Cells;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
/// <summary>
/// 生成EXCEL
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_Click(object sender, EventArgs e)
{
DataTable dt = new DataTable();
dt.Columns.Add("Product", Type.GetType("System.String"));
dt.Columns.Add("Version", Type.GetType("System.String"));
dt.Columns.Add("Description", Type.GetType("System.String"));
DataRow newRow;
newRow = dt.NewRow();
newRow["Product"] = "大话西游";
newRow["Version"] = "2.0";
newRow["Description"] = "我很喜欢";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "大话西游";
newRow["Version"] = "2.0";
newRow["Description"] = "我很喜欢";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "大话西游";
newRow["Version"] = "4.0";
newRow["Description"] = "我很喜欢";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "梦幻西游";
newRow["Version"] = "3.0";
newRow["Description"] = "比大话更幼稚";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "梦幻西游";
newRow["Version"] = "3.1";
newRow["Description"] = "比大话更幼稚";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "梦幻西游";
newRow["Version"] = "3.1";
newRow["Description"] = "比大话更幼稚";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "坤灵网游";
newRow["Version"] = "1.1";
newRow["Description"] = "比大话更幼稚";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "坤灵网游";
newRow["Version"] = "1.1";
newRow["Description"] = "比大话更幼稚";
dt.Rows.Add(newRow);
newRow = dt.NewRow();
newRow["Product"] = "坤灵网游";
newRow["Version"] = "1.1";
newRow["Description"] = "比大话更幼稚";
dt.Rows.Add(newRow);
string path = System.IO.Path.Combine(Application.StartupPath, "test01.xls");
if (File.Exists(path))
{
File.Delete(path);
}
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
Cells cells = worksheet.Cells;
//先设置标题项目:如大修件,日常备件等
cells.Merge(1, 0, 1, 4);
cells[1, 0].PutValue("XX月份供应商绩效考核报表");
cells[1, 0].SetStyle(set_title_style(workbook,TextAlignmentType.Center));
cells.Merge(2, 0, 1,3);
cells[2, 0].PutValue("供应商代码: E001");
cells.Merge(3, 0, 1, 3);
cells[3, 0].PutValue("供应商名称: 艾睿电子(深圳)有限公司");
cells.Merge(4, 0, 1, 3);
cells[4, 0].PutValue("供应商性质: 代理商");
cells.Merge(5, 0, 1, 2);
cells[5, 0].PutValue("总分: ");
cells.Merge(5, 2, 1, 2);
cells[5, 2].PutValue("考核等级: ");
string strCell1 = "";
string strCell2 = "";
for (int i = 0; i < dt.Rows.Count;i++)
{
if (strCell1 != dt.Rows[i][0].ToString())
{
strCell1 = dt.Rows[i][0].ToString();
int number = 0;
for (int j = i; j < dt.Rows.Count; j++)
{
if (strCell1 == dt.Rows[j][0].ToString())
{
number++;
}
else
{
break;
}
}
cells.Merge(i + 6, 0, number, 1);
cells[i + 6, 0].PutValue(dt.Rows[i][0]);
}
if (strCell2 != dt.Rows[i][1].ToString())
{
strCell2 = dt.Rows[i][1].ToString();
int number = 0;
for (int j = i; j < dt.Rows.Count; j++)
{
if (strCell2 == dt.Rows[j][1].ToString())
{
number++;
}
else
{
break;
}
}
cells.Merge(i + 6, 1, number, 1);
cells[i + 6, 1].PutValue(dt.Rows[i][1]);
}
cells[i + 6, 2].PutValue(dt.Rows[i][2]);
}
Cells cells2 = worksheet.Cells;
int columnCount = cells2.MaxColumn; //获取表页的最大列数
int rowCount = cells.MaxRow; //获取表页的最大行数
for (int col = 0; col < columnCount; col++)
{
worksheet.AutoFitColumn(col, 0, rowCount);
}
cells2.SetColumnWidth(0, 15);
cells2.SetColumnWidth(1, 15);
cells2.SetColumnWidth(2, 30);
cells2.SetColumnWidth(3, 4);
cells2.SetColumnWidth(4, 4);
for (int col = 0; col < rowCount; col++)
{
cells2.SetRowHeight(col+1, 26);
}
workbook.Save(System.IO.Path.Combine(Application.StartupPath, "test01.xls"));
workbook.Save(System.IO.Path.Combine(Application.StartupPath, "test01.pdf"), SaveFormat.Pdf);
}
//一般标题样式
protected Aspose.Cells.Style get_title_style(Workbook workbook, Color clrmy)
{
Aspose.Cells.Style styleTitle = workbook.Styles[workbook.Styles.Add()];
styleTitle.HorizontalAlignment = TextAlignmentType.Center; //标题居中对齐
styleTitle.VerticalAlignment = TextAlignmentType.Bottom; //垂直底对齐
styleTitle.Font.Name = "Arial"; //字体
styleTitle.Font.Size = 11; //字体大小
styleTitle.IsTextWrapped = true; //自动换行
styleTitle.Font.Color = clrmy;
return styleTitle;
}
//------------------------------------------------------------------------
// 工作表标题行,第一行样式
//------------------------------------------------------------------------
protected Aspose.Cells.Style set_title_style(Workbook workbook, TextAlignmentType aliCenter)
{
Aspose.Cells.Style style_top = workbook.Styles[workbook.Styles.Add()];
style_top.HorizontalAlignment = aliCenter; //标题居中对齐
style_top.Font.Size = 18; //字体大小
style_top.Font.Color = System.Drawing.Color.Blue;
style_top.Font.IsBold = true;
return style_top;
}
}
}
Aspose.Cells 对excel的使用总结的更多相关文章
- Aspose.Cells导出Excel(1)
利用Aspose.Cells导出excel 注意的问题 1.DataTable的处理 2.进行编码,便于中文名文件下载 3.别忘了Aspose.Cells.dll(可以自己在网上搜索) public ...
- 使用Aspose.Cells读取Excel
最新更新请访问: http://denghejun.github.io Aspose.Cells读取Excel非常方便,以下是一个简单的实现读取和导出Excel的操作类: 以下是Aspose.Ce ...
- 报表中的Excel操作之Aspose.Cells(Excel模板)
原文:报表中的Excel操作之Aspose.Cells(Excel模板) 本篇中将简单记录下Aspose.Cells这个强大的Excel操作组件.这个组件的强大之处,就不多说,对于我们的报表总是会有导 ...
- 怎么使用Aspose.Cells读取excel 转化为Datatable
说明:vs2012 asp.net mvc4 c# 使用Aspose.Cells 读取Excel 转化为Datatable 1.HTML前端代码 <%@ Page Language=" ...
- 怎么利用Aspose.Cells 获取excel 数据表中sheet的名称
说明:开发环境 vs2012 asp.net mvc4 c# 利用Aspose.Cells 获取Excel数据表的sheet的名称,并把获取的名称赋值给easyUI 的combobox 1.运行效果 ...
- Aspose.cells 读取Excel表中的图片问题
一.说明 本文主要是讲解,怎么使用aspose.cells读取Excel表中的图片,并把图片转换成流或是image对象. 二.开发环境说明 开发工具vs2012,c#语言, 三.Aspose.cell ...
- C#使用Aspose.Cells导出Excel简单实现
首先,需要添加引用Aspose.Cells.dll,官网下载地址:http://downloads.aspose.com/cells/net 将DataTable导出Xlsx格式的文件下载(网页输出) ...
- Aspose.Cells导出Excel(2)
DataTable dtTitle = ds.Tables[]; DataTable dtDetail = ds.Tables[]; int columns = dtTitle.Columns.Cou ...
- 【转】Aspose.Cells读取excel文件
Aspose是一个很强大的控件,可以用来操作word,excel,ppt等文件,用这个控件来导入.导出数据非常方便.其中Aspose.Cells就是用来操作Excel的,功能有很多.我所用的是最基本的 ...
- aspose.Cells 导出Excel
aspose aspse.Cells可以操作Excel,且不依赖于系统环境. 使用模板,通过绑定输出数据源 这种适合于对格式没有特别要求的,直接绑定数据源即可.和数据绑定控件差不多. Workbook ...
随机推荐
- OCP考试最新052题库分析整理-28
28.Which two are true about external tables? A. They support the ORACLE_DATAPUMP access driver. B. T ...
- Ubuntu更新提示哈希和不匹配“Hash Sum mismatch”
Ubuntu更新提示哈希和不匹配"Hash Sum mismatch" 今天在常规更新软件的时候,我的ubuntu报了一个错误. 应该是ubuntu程序更新转交给另外一个更新造成 ...
- linux源码中的核心数据结构
寄存器 pt_regs 进程线程 struct task_struct: 进程,或者是线程数据结构,在include/linux/sched.h里面定义的,与硬件体系结构无关 struct threa ...
- Centos 7.6 安装selenium+firefox+google chrome(支持xshell运行)
1. 查看Linux 版本 [root@penguin selenium]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) ...
- vue-cli 3.5 解决 typescript cannot find file 问题。
版本: "ts-loader": "^3.5.0","typescript": "^3.3.4000", "v ...
- origin显示三维曲面
准备数据并选中数据: 这里如果只关心z<1部分的趋势,可以对Z轴范围进行调整,双击Z轴的数字: 然后修改显色条的范围,双击曲面: 最后让曲面最上面部分clip掉: 成功了:
- CDQZ Day5
1DP #1题目名称 题目名称匹配块路径染色输入文件名 输入文件名match.in.in.inblock.inpath.inpaint.in输出文件名 输出文件名match.out.out.out.o ...
- MySQL数据库 053
mysql 使用: 开启服务端软件 mysqld 开启客户端软件 mysql -uroot -p mysql : 就是一个基于socket编写的c/s架构的软件 概念介绍 : 数据库服务器 : 运行数 ...
- Android微信支付流程及返回码-1之坑
http://www.51testing.com/html/36/n-3724336.html 之前做微信支付的时候,直接是以库形式引入项目的,虽然一直觉得微信支付的开发文档不太理想,但是印象中也没有 ...
- 解决bootstrap中显示不了本地字体图标
正在用bootstrap写一个登录界面时,准备用一个图标 但实际效果是: 可以看到图标并没有显示出来,百度一下,发现有可能是路径问题. 自己的目录关系和引用方式如下分别为: Ctrl+左键进入glyp ...