Bookmark and Share

Lee's 程序人生

HTML CSS Javascript XML AJAX ATLAS C# C++ 数据结构 软件工程 设计模式 asp.net Java 数字图象处理 Sql 数据库
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

Excel XML结构

Posted on 2009-10-12 19:06  analyzer  阅读(638)  评论(0编辑  收藏  举报
SQL代码
  1. <?xml version="1.0" encoding="UTF-8"?>     
  2. <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"     
  3.  xmlns:x="urn:schemas-microsoft-com:office:excel"     
  4.  xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"     
  5.  xmlns:html="http://www.w3.org/TR/REC-html40">   
  6. <Worksheet ss:Name="Table1">   
  7. <Table>   
  8. <Column ss:Index="1" ss:AutoFitWidth="0" ss:Width="110"/>   
  9. <Row>   
  10. <Cell><Data ss:Type="String">一行</Data></Cell>   
  11. </Row>   
  12.   
  13. <Row>   
  14. <Cell><Data ss:Type="String">二行</Data></Cell>   
  15. </Row>   
  16.   
  17. <Row>   
  18. <Cell><Data ss:Type="String">1列</Data></Cell>   
  19. <Cell><Data ss:Type="String">2列</Data></Cell>   
  20. <Cell><Data ss:Type="String">3列</Data></Cell>   
  21. <Cell><Data ss:Type="String">4列</Data></Cell>   
  22. <Cell><Data ss:Type="String">5列</Data></Cell>   
  23. <Cell><Data ss:Type="String">6列</Data></Cell>   
  24. <Cell><Data ss:Type="String">7列</Data></Cell>   
  25. </Row>   
  26.   
  27. </Table>   
  28. </Worksheet>   
  29. </Workbook>  

由此,可以自己写个Export To Excel咯

我要啦免费统计