我想将单词* .docx的一部分复制到另一个* .docx文件中。为此,我从原始文件中获得了段落列表:
private static List<Paragraph> getTextItems( string origFile )
{
List<Paragraph> paragraphItems = new List<Paragraph>();
var parser = new LineTextParser();
using (var doc = WordprocessingDocument.Open( origFile, false))
{
foreach (var el in doc.MainDocumentPart.Document.Body.Elements().OfType<Paragraph>())
{
if (parser.isHorizontalTableLine(el.InnerText))
{
if (true == el.InnerText.EndsWith("|"))
{
break;
}
}
paragraphItems.Add(el);
}
}
return paragraphItems;
}
然后我正在尝试将这些项目应用于新文件:
using (WordprocessingDocument wordDocument =
WordprocessingDocument.Create(resultFile, WordprocessingDocumentType.Document))
{
// Add a main document part.
MainDocumentPart mainPart = wordDocument.AddMainDocumentPart();
// Create the document structure and add some text.
mainPart.Document = new Document();
Body body = mainPart.Document.AppendChild(new Body());
foreach (var item in paragraphItems)
{
Paragraph para = body.AppendChild(new Paragraph() );
para.Append(item.ParagraphProperties.CloneNode(true));
Run run = para.AppendChild(new Run());
run.AppendChild(new Text(item.InnerText));
}
}
但是原始格式丢失了-我的意思是字体已经更改,而且对齐。这里有什么解决方案?
答案 0 :(得分:0)
首先,使用item.InnerText
代替item.InnerXml
并将新段落Xml设置为源段落Xml。
您只需要重新排列将段落添加到文档的方式。下面的方法应使用从原始文档复制的段落创建文件。
public void CreateFile(string resultFile, List<Paragraph> paragraphItems)
{
using (WordprocessingDocument wordDocument =
WordprocessingDocument.Create(resultFile, WordprocessingDocumentType.Document))
{
MainDocumentPart mainPart = wordDocument.AddMainDocumentPart();
mainPart.Document = new Document();
Body body = mainPart.Document.AppendChild(new Body());
foreach (var item in paragraphItems)
{
Paragraph para = new Paragraph();
// set the inner Xml of the new paragraph
para.InnerXml = item.InnerXml;
// append paragraph to body here
body.AppendChild(para);
}
}
}
现在,我们需要将doc.MainDocumentPart.StyleDefinitionsPart
中的样式应用于新文档。
此MSDN guide修改了以下方法。它将StyleDefinitionsPart
中的样式提取为XDocument
。
public XDocument ExtractStylesPart(string sourceFile)
{
XDocument styles = null;
// open readonly
using (var document = WordprocessingDocument.Open(sourceFile, false))
{
var docPart = document.MainDocumentPart;
StylesPart stylesPart = docPart.StyleDefinitionsPart;
if (stylesPart != null)
{
using (var reader = XmlNodeReader.Create(
stylesPart.GetStream(FileMode.Open, FileAccess.Read)))
{
// Create the XDocument.
styles = XDocument.Load(reader);
}
}
}
// Return the XDocument instance.
return styles;
}
然后,您需要将样式保存到新文档中。以下方法应为您工作:
public void SetStyleToTarget(string targetFile, XDocument newStyles)
{
// open with write permissions
using (var doc = WordprocessingDocument.Open(targetFile, true))
{
// add or get the style definition part
StyleDefinitionsPart styleDefn = null;
if (doc.MainDocumentPart.StyleDefinitionsPart == null)
{
styleDefn = doc.MainDocumentPart.AddNewPart<StyleDefinitionsPart>();
}
else
{
styleDefn = doc.MainDocumentPart.StyleDefinitionsPart;
}
// populate part with the new styles
if (styleDefn != null)
{
// write the newStyle xDoc to the StyleDefinitionsPart using a streamwriter
newStyles.Save(new StreamWriter(
styleDefn.GetStream(FileMode.Create, FileAccess.Write)));
}
// probably not needed (works for me with or without this save)
doc.Save();
}
}
上述方法的灵感来自前面链接的指南。不同之处在于,这会为新文档创建一个新的样式元素(因为它没有元素-我们只是创建了文档)。
我只使用了StyleDefinitionsPart
,但还有一部分StylesWithEffectsPart
。如果文档使用StylesWithEffectsPart
,则可能需要实现类似的方法。