我有一个作为 XML 的 Excel 电子表格输出,其列定义如下:
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">#</ss:Data>
</Cell>
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">prefix</ss:Data>
</Cell>
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">name</ss:Data>
</Cell>
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">label</ss:Data>
</Cell>
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">totalLabel</ss:Data>
</Cell>
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">base schema</ss:Data>
</Cell>
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">systemid</ss:Data>
</Cell>
<Cell ss:StyleID="ColumnHead">
<ss:Data ss:Type="String">prohibit</ss:Data>
</Cell>
</Row>
这是一个示例行:
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="NoBorderNumberCell">
<ss:Data ss:Type="Number">1</ss:Data>
</Cell>
<Cell ss:StyleID="NoBorderCell">
<ss:Data ss:Type="String">ifrs</ss:Data>
</Cell>
<Cell ss:StyleID="NoBorderCell">
<ss:Data ss:Type="String">AccountingProfit</ss:Data>
</Cell>
<Cell ss:StyleID="NoBorderCell">
<ss:Data ss:Type="String">Accounting profit</ss:Data>
</Cell>
<Cell ss:StyleID="NoBorderCell"/>
<Cell ss:StyleID="NoBorderCell">
<ss:Data ss:Type="String">full_entry_point</ss:Data>
</Cell>
</Row>
问题是,如何检测哪些单元格缺少哪些列?是否要求源对所有空单元格都有一个空白的自闭合标签,以便我每次都能将每列与每个值配对?
我将如何在 C# 中处理这种情况?我拥有最低限度的权利,不知道如何将其分开以解决缺失的列。
if (reader.Name == "ss:Data")
{
while (reader.Read())
Response.Write(reader.Value);
}