gpt4 book ai didi

html - 创建 Excel 文件作为 html 标记

转载 作者:数据小太阳 更新时间:2023-10-29 02:09:35 26 4
gpt4 key购买 nike

我有一些带有下一个标记(附在下面)的纯文本文件(.xls 扩展名)。它在 excel 2003 中打开没有任何错误。

现在我需要知道技术的名称是什么,什么时候可以通过 html 标记创建 excel 文件?

因为我需要修复此文件才能在 Excel 2007 及更早版本中正确打开。 (我现在看到“不同格式的文件”错误)。

<html xmlns:o=\"urn:schemas-microsoft-com:office:office\\ xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel">
<!--[if gte mso 9]><xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>Sheet1</x:Name>
<x:WorksheetOptions>
<x:Selected/>
<x:ProtectContents>False</x:ProtectContents>
<x:ProtectObjects>False</x:ProtectObjects>
<x:ProtectScenarios>False</x:ProtectScenarios>
</x:WorksheetOptions>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
<x:ProtectStructure>False</x:ProtectStructure>
<x:ProtectWindows>False</x:ProtectWindows>
</x:ExcelWorkbook>
</xml><![endif]-->
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:" ";}
.xl2
{
mso-number-format:M/D/YY;
border-left:.5pt solid;
border-top:.5pt solid;
border-right:.5pt solid;
border-bottom:.5pt solid;
}
.xl3
{
border-left:.5pt solid;
border-top:.5pt solid;
border-right:.5pt solid;
border-bottom:.5pt solid;
}
-->
</style>
</head>
<body>
<table>
<tr>
<td class=xl2>17.02.2010</td>
<td class=xl3>4</td>
<td class=xl3>0</td>
</tr>
<tr>
</tr>
</table>
</body>
</html>

最佳答案

该消息是 Excel 2007 的新增内容。

添加警告消息是为了帮助防止由于文件的实际内容和文件扩展名之间的差异而导致的问题。

可以编辑注册表项以停止显示消息。

HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Excel\Security 下添加一个名为 ExtensionHardening 的新 DWORD 值 并将其值设置为 0

或者可以设置组策略。

有关更多详细信息,请参阅此知识库文章:"When you open a file in Excel 2007..."


  • Excel 2000 添加了对超文本标记语言 (HTML) 作为 native 文件格式的支持 - HTML、CSS 和 XML
  • Excel 2003 添加了对 Microsoft Office XML 格式的支持 - SpreadsheetML
  • Excel 2007 添加了对 Office Open XML 的支持

您的示例代码基于 Excel 2000 格式。

该技术似乎没有特定名称。

它有时被称为 Office XML/HTML。

关于html - 创建 Excel 文件作为 html 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3363520/

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