zoukankan
html css js c++ java
Microsoft SDK for Open XML Formats Technology Preview 发布
下载地址:
http://go.microsoft.com/?linkid=6899996
帮助文档里有一个创建docx的例子,下面提供一个创建xlsx的例子
using
System;
using
System.Collections.Generic;
using
System.Text;
using
Microsoft.Office.DocumentFormat.OpenXml.Packaging;
using
System.IO;
using
System.Xml;
namespace
ConsoleApplication1
{
class
Program
{
static
void
Main(
string
[] args)
{
CreateNewXlsDocument(
"
c:\\temp.xlsx
"
);
}
public
static
void
CreateNewXlsDocument(
string
document)
{
using
(SpreadsheetDocument doc
=
SpreadsheetDocument.Create(document, SpreadsheetDocumentType.Workbook))
{
WorkbookPart mainPart
=
doc.AddWorkbookPart();
WorksheetPart part
=
mainPart.AddNewPart
<
WorksheetPart
>
();
string
rid
=
mainPart.GetIdOfPart(part);
SetWorkBookContect(mainPart,rid);
SetWorkSheetContect(part);
}
}
public
static
void
SetWorkBookContect(WorkbookPart part,
string
rid)
{
const
string
xlsXml
=
@"
<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes""?><workbook xmlns=""http://schemas.openxmlformats.org/spreadsheetml/2006/main"" xmlns:r=""http://schemas.openxmlformats.org/officeDocument/2006/relationships""><sheets><sheet name=""Sheet1"" sheetId=""1"" r:id=""{0}""/></sheets></workbook>
"
;
using
(Stream stream
=
part.GetStream())
{
byte
[] buf
=
(
new
UTF8Encoding()).GetBytes(
string
.Format(xlsXml,rid));
stream.Write(buf,
0
, buf.Length);
}
}
public
static
void
SetWorkSheetContect(WorksheetPart part)
{
const
string
xlsXml
=
@"
<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes""?>
<worksheet xmlns=""http://schemas.openxmlformats.org/spreadsheetml/2006/main"" xmlns:r=""http://schemas.openxmlformats.org/officeDocument/2006/relationships"">
<sheetData>
<row>
<c t=""inlineStr"">
<is>
<t>测试</t>
</is>
</c>
</row>
</sheetData>
</worksheet>
"
;
using
(Stream stream
=
part.GetStream())
{
byte
[] buf
=
(
new
UTF8Encoding()).GetBytes(xlsXml);
stream.Write(buf,
0
, buf.Length);
}
}
}
}
查看全文
相关阅读:
linux环境变量(一)
linux常用命令-ps
linux实用小命令--查看文本内容
postman tests常用方法
Vue 中嵌套 Iframe,用postMessage通信 踩坑记
[Vue warn]: Error in nextTick: "RangeError: Maximum call stack size exceeded"
对STM32所用位带操作宏的详细剖析
移植Modbus TCP二
移植Modbus TCP一
STM32位带操作
原文地址:https://www.cnblogs.com/derek/p/773932.html
最新文章
Clear Float
CSS的Float之一
javascript必知必会
tomcat启动远程调试
matlab基本语法
matlab基本语法
树的遍历
二叉树的表达
有根树的表达
对拍
热门文章
DFS解决八皇后问题
DFS集训
并查集的初步学习
2019/7/18ACM集训
mysql 的几种安装方式
centos安装和配置VNC服务器
cat命令详解——持续更新
crontab非root用户定时任务踩坑——脚本单独运行正常,放在定时任务运行就报错。
shell执行数学运算
linux环境变量(二)
Copyright © 2011-2022 走看看