最简单的XML格式Excel表格文件

时间:2023-01-15 11:32:08

最简单的XML格式Excel表格文件


最简单的XML格式Excel表格文件

当然,还有几个地方是可以删除掉的内容,但是这样就有些破坏完整性了。这个文档的作用就是从XML数据源中导出数据之后,使用XSLT转换也可以把数据导出。简单!

最简单的XML格式Excel表格文件<?xml version="1.0"?>
最简单的XML格式Excel表格文件<?mso-application progid="Excel.Sheet"?>
最简单的XML格式Excel表格文件<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
最简单的XML格式Excel表格文件 xmlns:o
="urn:schemas-microsoft-com:office:office"
最简单的XML格式Excel表格文件 xmlns:x
="urn:schemas-microsoft-com:office:excel"
最简单的XML格式Excel表格文件 xmlns:ss
="urn:schemas-microsoft-com:office:spreadsheet"
最简单的XML格式Excel表格文件 xmlns:html
="http://www.w3.org/TR/REC-html40">
最简单的XML格式Excel表格文件 <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
最简单的XML格式Excel表格文件  <Title>Excel表格</Title>
最简单的XML格式Excel表格文件  <LastAuthor>bigtall</LastAuthor>
最简单的XML格式Excel表格文件 </DocumentProperties>
最简单的XML格式Excel表格文件 <Styles>
最简单的XML格式Excel表格文件  <Style ss:ID="Default" ss:Name="Normal">
最简单的XML格式Excel表格文件   <Alignment ss:Vertical="Center"/>
最简单的XML格式Excel表格文件   <Font ss:FontName="宋体" x:CharSet="134" ss:Size="12"/>
最简单的XML格式Excel表格文件  </Style>
最简单的XML格式Excel表格文件 </Styles>
最简单的XML格式Excel表格文件 <Worksheet ss:Name="tt">
最简单的XML格式Excel表格文件  <Table>
最简单的XML格式Excel表格文件   <Row>
最简单的XML格式Excel表格文件    <Cell ss:MergeAcross="6" ><Data ss:Type="String">Hello!World!</Data></Cell>
最简单的XML格式Excel表格文件   </Row>
最简单的XML格式Excel表格文件  </Table>
最简单的XML格式Excel表格文件 </Worksheet>
最简单的XML格式Excel表格文件</Workbook>
最简单的XML格式Excel表格文件

其实还可以精简到这样:

最简单的XML格式Excel表格文件<?xml version="1.0"?>
最简单的XML格式Excel表格文件<?mso-application progid="Excel.Sheet"?>
最简单的XML格式Excel表格文件<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
最简单的XML格式Excel表格文件 xmlns:o
="urn:schemas-microsoft-com:office:office"
最简单的XML格式Excel表格文件 xmlns:x
="urn:schemas-microsoft-com:office:excel"
最简单的XML格式Excel表格文件 xmlns:ss
="urn:schemas-microsoft-com:office:spreadsheet"
最简单的XML格式Excel表格文件 xmlns:html
="http://www.w3.org/TR/REC-html40">
最简单的XML格式Excel表格文件 <Worksheet ss:Name="tt">
最简单的XML格式Excel表格文件  <Table>
最简单的XML格式Excel表格文件   <Row>
最简单的XML格式Excel表格文件    <Cell><Data ss:Type="String">Hello!World!</Data></Cell>
最简单的XML格式Excel表格文件   </Row>
最简单的XML格式Excel表格文件  </Table>
最简单的XML格式Excel表格文件 </Worksheet>
最简单的XML格式Excel表格文件</Workbook>
最简单的XML格式Excel表格文件

其实把名称空间定义html,o,x三个删除也好使!最简单的XML格式Excel表格文件