Skip to content

Instantly share code, notes, and snippets.

@Clarence-pan
Created June 1, 2017 10:24
Show Gist options
  • Save Clarence-pan/1a1b787d61953bbe6311287643a4099a to your computer and use it in GitHub Desktop.
Save Clarence-pan/1a1b787d61953bbe6311287643a4099a to your computer and use it in GitHub Desktop.
最简洁的xml格式的表格文件。可以用excel2003以上版本打开。
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">
<Worksheet ss:Name="tt">
<Table>
<Row>
<Cell><Data ss:Type="String">Hello</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">World!</Data></Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment