The simplest XML format Excel File
Of course, there are a few other items that can be deleted, but this may damage the integrity. This document is used to export data from an XML data source using XSLT conversion. Simple!
<? Xml version = "1.0"?>
<? Mso-application progid = "Excel. Sheet"?>
<Workbook xmlns = "urn: schemas-microsoft-com: office: spreadsheet"
Xmlns: o = "urn: schemas-microsoft-com: office"
Xmlns: x = "urn: schemas-microsoft-com: office: excel"
Xmlns: ss = "urn: schemas-microsoft-com: office: spreadsheet"
Xmlns: html = "http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns = "urn: schemas-microsoft-com: office">
<Title> Excel table </Title>
<LastAuthor> bigtall </LastAuthor>
</DocumentProperties>
<Styles>
<Style ss: ID = "Default" ss: Name = "Normal">
<Alignment ss: Vertical = "Center"/>
<Font ss: FontName = "" x: CharSet = "134" ss: Size = "12"/>
</Style>
</Styles>
<Worksheet ss: Name = "tt">
<Table>
<Row>
<Cell ss: merge1_ss = "6"> <Data ss: Type = "String"> Hello! World! </Data> </Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
In fact, it can be simplified to the following:
<? Xml version = "1.0"?>
<? Mso-application progid = "Excel. Sheet"?>
<Workbook xmlns = "urn: schemas-microsoft-com: office: spreadsheet"
Xmlns: o = "urn: schemas-microsoft-com: office"
Xmlns: x = "urn: schemas-microsoft-com: office: excel"
Xmlns: ss = "urn: schemas-microsoft-com: office: spreadsheet"
Xmlns: html = "http://www.w3.org/TR/REC-html40">
<Worksheet ss: Name = "tt">
<Table>
<Row>
<Cell> <Data ss: Type = "String"> Hello! World! </Data> </Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
In fact, you can also delete the three namespaces html, o, and x!