gpt4 book ai didi

.net - 在 .NET 中创建的 OpenXML 电子表格无法在 iPad 中打开

转载 作者:可可西里 更新时间:2023-11-01 04:27:43 24 4
gpt4 key购买 nike

我正在尝试在 .NET 中生成一个电子表格,当我的经理不在办公室时,他会在他的 iPad 上打开它。

电子表格在 Windows PC 上可以正常打开,但是当尝试在 iPad 上打开时它显示“读取文档时发生错误”(非常有用!)

通过使用 OpenXML SDK 生产力工具上的“比较”功能与在 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。

感谢所有帮助!

最佳答案

我花了很多时间对此进行研究,并认为我会分享我的结果。 OpenXML 似乎在做两件事。1. content_types.xml 文件缺少工作簿条目2. xl/_rels/workbook.xml.rels 文件使用完全相对路径。

Excel 本身可以很好地打开文件,但我在 iPad 上尝试了各种应用程序,但都失败了。所以我不得不使用以下代码自己手动修复文件。它假定文件的全部内容作为流传入并使用 DotNetZip 打开和操作。希望这段代码对其他人有帮助!

    private Stream ApplyOpenXmlFix(Stream input)
{
const string RELS_FILE = @"xl/_rels/workbook.xml.rels";
const string RELATIONSHIP_ELEMENT = "Relationship";
const string CONTENT_TYPE_FILE = @"[Content_Types].xml";
const string XL_WORKBOOK_XML = "/xl/workbook.xml";
const string TARGET_ATTRIBUTE = "Target";
const string SUPERFLUOUS_PATH = "/xl/";
const string OVERRIDE_ELEMENT = "Override";
const string PARTNAME_ATTRIBUTE = "PartName";
const string CONTENTTYPE_ATTRIBUTE = "ContentType";
const string CONTENTTYPE_VALUE = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml";

XNamespace contentTypesNamespace = "http://schemas.openxmlformats.org/package/2006/content-types";
XNamespace relsNamespace = "http://schemas.openxmlformats.org/package/2006/relationships";
XDocument xlDocument;
MemoryStream memWriter;

try
{
input.Seek(0, SeekOrigin.Begin);
ZipFile zip = ZipFile.Read(input);

//First we fix the workbook relations file
var workbookRelations = zip.Entries.Where(e => e.FileName == RELS_FILE).Single();
xlDocument = XDocument.Load(workbookRelations.OpenReader());

//Remove the /xl/ relative path from all target attributes
foreach (var relationship in xlDocument.Root.Elements(relsNamespace + RELATIONSHIP_ELEMENT))
{
var target = relationship.Attribute(TARGET_ATTRIBUTE);

if (target != null && target.Value.StartsWith(SUPERFLUOUS_PATH))
{
target.Value = target.Value.Substring(SUPERFLUOUS_PATH.Length);
}
}

//Replace the content in the source zip file
memWriter = new MemoryStream();
xlDocument.Save(memWriter, SaveOptions.DisableFormatting);
memWriter.Seek(0, SeekOrigin.Begin);
zip.UpdateEntry(RELS_FILE, memWriter);

//Now we fix the content types XML file
var contentTypeEntry = zip.Entries.Where(e => e.FileName == CONTENT_TYPE_FILE).Single();
xlDocument = XDocument.Load(contentTypeEntry.OpenReader());

if (!xlDocument.Root.Elements().Any(e =>
e.Name == contentTypesNamespace + OVERRIDE_ELEMENT &&
e.Attribute(PARTNAME_ATTRIBUTE) != null &&
e.Attribute(PARTNAME_ATTRIBUTE).Value == XL_WORKBOOK_XML))
{
//Add in the missing element
var overrideElement = new XElement(
contentTypesNamespace + OVERRIDE_ELEMENT,
new XAttribute(PARTNAME_ATTRIBUTE, XL_WORKBOOK_XML),
new XAttribute(CONTENTTYPE_ATTRIBUTE, CONTENTTYPE_VALUE));

xlDocument.Root.Add(overrideElement);

//Replace the content
memWriter = new MemoryStream();
xlDocument.Save(memWriter, SaveOptions.DisableFormatting);
memWriter.Seek(0, SeekOrigin.Begin);
zip.UpdateEntry(CONTENT_TYPE_FILE, memWriter);
}

Stream output = new MemoryStream();

//Save file
zip.Save(output);

return output;
}
catch
{
//Just in case it fails, return the original document
return input;
}
}

关于.net - 在 .NET 中创建的 OpenXML 电子表格无法在 iPad 中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10929054/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com