Syncfusion Essential DocIO操作word文件实用函数

简介:
复制代码

Essential DocIO

.NET库,能够读写Microsoft Word文件。该组件是一个对象模型,同Microsoft Office COM类库相似,它不采用COM interop,以C#编写。如果系统内没有安装Microsoft Word,可以考虑该组件。

创建新的MS Word文档:支持创建包含文本、图片、图表、页面和页脚的MS Word文档。

文档格式化:支持格式化为通用的MS Word 报告。

文档生成基于模板:基于模板生成文档,可以使用MS Word GUI设计文档报告,然后使用DocIO向模板文件内动态填充数据。

文档属性:读写Word文档的属性设置。

转换:支持使用Essential PDF将MS Word文档转换为PDF。

高级特性:支持复制和合并多个MS Word文档为单个文档。

复制代码
复制代码
public static byte[] ConvertHtmlToDoc( string html)
{
var document = new WordDocument();
IWSection section = document.AddSection();
IWParagraph para = section.AddParagraph();

string errorMessage = "";
bool valid = section.Body.IsValidXHTML(html, XHTMLValidationType.Strict, out errorMessage);
if (!valid)
throw new InvalidCastException(errorMessage + " <hr> " + html) ;
document.XHTMLValidateOption = XHTMLValidationType.Strict;
section.Body.InsertXHTML(html);
var outMem = new MemoryStream();

document.Save(outMem, FormatType.Doc);
outMem.Seek( 0, SeekOrigin.Begin);
var content = new byte[outMem.Length];
outMem.Read(content, 0, content.Length);
outMem.Dispose();
document.Close();
return content;
}
复制代码

复制代码
/// <summary>
/// 生成Word的时候替换指定的文字
/// </summary>
/// <param name="templatePath"></param>
/// <param name="FileName"></param>
/// <param name="replaysDictionary"></param>
public static void ReplaceDocContent( string templateFileName, string newFileName,
Dictionary< string, string> replaysDictionary)
{
IWordDocument document = new WordDocument();
document.Open(templateFileName, FormatType.Doc);
foreach (var rd in replaysDictionary)
{
if ( string.IsNullOrEmpty(document.GetText())) continue;

document.Replace(rd.Key, rd.Value, false, false);
while (document.GetText().IndexOf(rd.Key) != - 1)
document.Replace(rd.Key, rd.Value, false, false);
}
document.Save(newFileName, FormatType.Doc);
}
复制代码

复制代码
public static Stream SetDocProtect( byte[] docContent, string key)
{
var mem = new MemoryStream(docContent);
mem.Seek( 0, SeekOrigin.Begin);

IWordDocument document = new WordDocument(mem, FormatType.Automatic);
document.Protect(ProtectionType.AllowOnlyFormFields, key);
var outMem = new MemoryStream();
document.Save(outMem, FormatType.Doc);
outMem.Seek( 0, SeekOrigin.Begin);
return outMem;
}
复制代码

复制代码
public static IWTable ReplaceTable(WordDocument document, string bookmarkName, DataTable data, string mergeColName , List<List< string>> mutilTableCaption)
{
if (document == null) throw new ArgumentNullException( " document ");
if (bookmarkName == null) throw new ArgumentNullException( " bookmarkName ");
if (data == null) throw new ArgumentNullException( " data ");
if (data.Columns.Count < 1) throw new ArgumentNullException( " data ");

int captionCount = mutilTableCaption != null && mutilTableCaption.Count > 0 ? mutilTableCaption.Count : 1;
WTable table = new WTable(document, true);

table.ResetCells(data.Rows.Count + captionCount, data.Columns.Count);

for (var colCount = 0; colCount < captionCount; colCount++)
{
for (var col = 0; col < data.Columns.Count; col++)
{
var paragraph = table.Rows[colCount].Cells[col].AddParagraph();

var caption = data.Columns[col].ColumnName;
if (mutilTableCaption != null && mutilTableCaption.Count > 0)
caption = mutilTableCaption[colCount][col];
var text = paragraph.AppendText(caption);
paragraph.ParagraphFormat.HorizontalAlignment = Syncfusion.DocIO.DLS.HorizontalAlignment.Center;
text.CharacterFormat.FontName = " 宋体 ";
text.CharacterFormat.Bold = false;
text.CharacterFormat.FontSize = 10.5f;
}
}

for (var row = captionCount; row <= data.Rows.Count; row++)
for (var col = 0; col < data.Columns.Count; col++)
{
var paragraph = table.Rows[row].Cells[col].AddParagraph();
var text = paragraph.AppendText(data.Rows[row - captionCount][col] + "");

text.CharacterFormat.FontName = " 宋体 ";
text.CharacterFormat.FontSize = 9f;
double val = 0;
if ( double.TryParse(text.Text, out val))
{
text.Text = Math.Round(val, 2) + "";
// align right
paragraph.ParagraphFormat.HorizontalAlignment = Syncfusion.DocIO.DLS.HorizontalAlignment.Right;
table.Rows[row].Cells[col].CellFormat.VerticalAlignment = VerticalAlignment.Middle;
table.Rows[row].Cells[col].CellFormat.TextWrap = false;
}
}
// 合并单元格,向下合并
if (! string.IsNullOrEmpty(mergeColName))
for (var row = captionCount; row < table.Rows.Count; row++)
{
var cell = table.Rows[row].Cells[data.Columns[mergeColName].Ordinal];
cell.CellFormat.VerticalMerge = CellMerge.Start;
var text = data.Rows[row - captionCount][mergeColName] + "";
if (row > captionCount)
{
var priorCell = table.Rows[row - captionCount].Cells[data.Columns[mergeColName].Ordinal];
var findText = data.Rows[row - captionCount - 1][mergeColName] + "";
if (text.Equals(findText))
cell.CellFormat.VerticalMerge = CellMerge.Continue;
}
}

BookmarksNavigator bk = new BookmarksNavigator(document);
bk.MoveToBookmark(bookmarkName);

TextBodyPart body= bk.GetBookmarkContent();
bk.DeleteBookmarkContent( true);

bk.InsertTable(table);
return table;
}



本文转自suifei博客园博客,原文链接:http://www.cnblogs.com/Chinasf/archive/2010/02/04/1663398.html,如需转载请自行联系原作者
相关文章
|
7月前
|
测试技术
【LaTex】10 从md文件导入\导出word (因为:Typora-版本过高不能转换word 报错:Unknown option --atx-headers. )
【LaTex】10 从md文件导入\导出word (因为:Typora-版本过高不能转换word 报错:Unknown option --atx-headers. )
196 7
|
4月前
|
XML 存储 数据格式
使用Python的zipfile模块巧解Word批量生成问题
通过以上步骤,我们得到了填充了特定数据的 Word 文档。这个过程可以通过循环对多个数据集重复执行,从而实现批量生成多个 Word 文档的目标。
47 5
|
6月前
|
XML 存储 安全
doc 和 docx 文件的区别
doc 和 docx 文件的区别
294 5
|
7月前
|
PHP Python
基于Python中docx与docxcompose批量合并多个Word文档文件并逐一添加分页符
基于Python中docx与docxcompose批量合并多个Word文档文件并逐一添加分页符
224 1
|
7月前
|
XML Go 数据格式
Go如何自动解压缩包?如何读取docx/doc文件内容?
在开发过程中,我们常常需要处理压缩包和文档文件。本文将介绍如何使用Go语言自动解压缩包和读取docx/doc文件。
105 0
|
Python
Python中read()、readline()和readlines()三者间的区别和用法
Python中read()、readline()和readlines()三者间的区别和用法
177 0
|
Python
python中读取txt文件时split()函数的妙用
python中读取txt文件时split()函数的妙用
533 2
python中读取txt文件时split()函数的妙用
|
Linux 开发工具
Linux:时间日期指令(date)+查找指令(find,locate,grep)+压缩和解压指令(gzip,gunzip;zip,unzip;tar)(内含详细解释+操作实例)
Linux:时间日期指令(date)+查找指令(find,locate,grep)+压缩和解压指令(gzip,gunzip;zip,unzip;tar)(内含详细解释+操作实例)
230 0
Linux:时间日期指令(date)+查找指令(find,locate,grep)+压缩和解压指令(gzip,gunzip;zip,unzip;tar)(内含详细解释+操作实例)
|
数据采集 安全 数据格式
python读取word详解【from docx import Document】
python读取word详解【from docx import Document】
597 0
python读取word详解【from docx import Document】
|
程序员 Go
Go slice切片详解和实战:make append copy
这篇文章介绍切片的生成make()、切片的追加append()、切片的复制copy()。对知识点进行详细介绍和应用实战。
134 0
Go slice切片详解和实战:make append copy