我正在尝试在 .NET 中生成一个电子表格,当他不在办公室时,我的经理将在他的 iPad 上打开该电子表格。
电子表格在 Windows PC 上可以正常打开,但在 iPad 上打开时显示“读取文档时出错”(非常有用!)
通过使用 OpenXML SDK Productivity 工具上的“比较”功能与在 iPad 上打开的文档,并通过在记事本中手动编辑错误文档的 XML 文件,我将其缩小到文件xl/_rels/workbook .xml.rels存储工作簿中各部分的关系。
这是我用来生成 WorkbookPart 和引用的代码
WorkbookPart workbookPart1 = document.AddWorkbookPart();
WorkbookStylesPart workbookStylesPart1 = workbookPart1.AddNewPart<WorkbookStylesPart>("rId3");
ThemePart themePart1 = workbookPart1.AddNewPart<ThemePart>("rId2");
WorksheetPart worksheetPart1 = workbookPart1.AddNewPart<WorksheetPart>("rId1");
我的代码生成以下输出,但在 iPad 上无法打开。
<?xml version="1.0" encoding="utf-8" ?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="/xl/styles.xml" Id="rId3" />
<Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="/xl/theme/theme.xml" Id="rId2" />
<Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="/xl/worksheets/sheet.xml" Id="rId1" />
</Relationships>
如果我将 Target 属性的值更改为使用相对引用路径,并给出以下输出,那么它确实会在 iPad 上打开。
<?xml version="1.0" encoding="utf-8" ?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml" Id="rId3" />
<Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme.xml" Id="rId2" />
<Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet.xml" Id="rId1" />
</Relationships>
所以问题是:
如何更改我的 .NET 代码,以便它输出带有相对路径的 XML 的第二个版本。
感谢所有帮助!