zoukankan      html  css  js  c++  java
  • Atitit office Ooxml excel标准的主要内容 目录 1.1. 物理存储 zip+文件夹包+xml 1 1.2. Package Structure 1 1.3. 内容部分 1

    Atitit office  Ooxml excel标准的主要内容

     

    目录

    1.1. 物理存储 zip+文件夹包+xml 1

    1.2. Package Structure 1

    1.3. 内容部分 1

    1.3.1. Workbook sheets table  cell  1

    1.3.2. pivotTable 1

    1.4. Style和格式 2

     

      1. 物理存储 zip+文件夹包+xml

     

      1. Package Structure

    A SpreadsheetML or .xlsx file is a zip file (a package) containing a number of "parts" (typically UTF-8 or UTF-16 encoded) or XML files. The package may also contain other media files such as images. The structure is organized according to the Open Packaging Conventions as outlined in Part 2 of the OOXML standard ECMA-376.

    You can look at the file structure and the files that comprise a SpreadsheetML file by simply unzipping the .xlsx file.

     

    Office Open XML - Anatomy of an OOXML SpreadsheetML File.html

     

      1. 内容部分
        1. Workbook sheets table  cell 
        2. pivotTable

     

     

      1. Style和格式

    Atitit office ooxml  系列 excel的读取api 框架 poi的使用

     

    目录

    1. 主要内容 1

    2. 案例功能 2

    3. 意义:: 2

    4. 文档体系结构与背景知识 2

    4.1. 文档的三大分类体系 纯文本》markdown(少量标记)》xml类(大量标记) 2

    4.2. Atitit 常见概念与技术 dom及其解析 2

    4.3. 文档常见子分类按照用途( 文字word型,电子表格类,演示文稿ppt类 图形文件(比如viso) 网页html类  公式类  ) 2

    4.4. office文档xml dom解析标准ooxml  odf 2

    4.5. 文档容器格式 office pdf html msg 2

    4.6. Ms Office体系图 3

    4.6.1. 文档解析与存储格式背景知识 3

    4.6.2. Atitit Office系列文档格式 openXML标准 3

    4.6.3. Office系列格式2003 2007 2010支持区别 3

    4.6.4. Excel的dom结构 4

    5. Poi读写excel的dom对象模型 5

    5.1. 类比于h5中的table表格体系 5

    5.2. Workbook工作簿 excel文件 5

    5.3. Sheet( 表格),row column 行列概念 5

    5.4. Cell单元格 (相当于h5 table的td) 5

    6. 重要概念 5

    6.1. Dom模型 5

    6.2. Office标准 5

    6.3. 原始api 为什么都比较难用 可读性差 繁琐? 5

    6.4. Api 包装,可读性高的api  vs 性能模式的api 5

    7. 操作 5

    8. 扩展 其他的文档 5

    8.1. Ooxml标准的 excel的主要内容 6

    8.2. Markdown与h5文档模式 6

    9. 后记 6

    9.1. 条件查询 实现类似sql where效果 6

    9.2. linq 6

    10. 引用文档 6

    11. 附录 6

     

  • 相关阅读:
    webpack常见问题 收藏
    ES6 模块
    ES6 Class 类
    ES6 迭代器
    ES6 函数
    ES6 数组
    ES6 对象
    记一次pda(安卓)环境配置流程
    类型转换
    DOM事件
  • 原文地址:https://www.cnblogs.com/attilax/p/15197493.html
Copyright © 2011-2022 走看看