zoukankan      html  css  js  c++  java
  • 应用打开其xlspptdoc等

    http://www.libxl.com/documentation.html  xls读写编辑类库libxl

    https://blog.csdn.net/songbob/article/details/80523019  比较符合的PPT 操作方式,POI,ASPOSE,VBA

    https://blog.csdn.net/weixin_42580207/article/details/80880028   己方应用打开其它app传递过来的文件

    Office文件的IOS-UTI支持

    文件格式 UTI type
    doc com.microsoft.word.doc
    docx org.openxmlformats.wordprocessingml.document
    ppt com.microsoft.powerpoint.ppt
    pptx org.openxmlformats.presentationml.presentation
    xls com.microsoft.excel.xls
    xlsx org.openxmlformats.spreadsheetml.sheet
    pdf com.adobe.pdf
    ---------------------
    作者:牛谱乐
    来源:CSDN
    原文:https://blog.csdn.net/weixin_42580207/article/details/80880028
    版权声明:本文为博主原创文章,转载请附上博文链接!

    <key>CFBundleDocumentTypes</key>
        <array>
            <dict>
                <key>CFBundleTypeName</key>
                <string>OFFICE Document</string>
                <key>LSHandlerRank</key>
                <string>Owner</string>
                <key>LSItemContentTypes</key>
                <array>
                    <string>com.microsoft.word.doc</string>
                    <string>com.microsoft.powerpoint.ppt</string>
                    <string>com.microsoft.excel.xls</string>
                    <string>com.adobe.pdf</string>
                    <string>org.openxmlformats.wordprocessingml.document</string>
                    <string>org.openxmlformats.presentationml.presentation</string>
                    <string>org.openxmlformats.spreadsheetml.sheet</string>
                    <string>org.oasis-open.opendocument.text</string>
                </array>
            </dict>
        </array>
    --------------------- 
  • 相关阅读:
    Yii2中把路由地址中的%2F改为/
    深度解析常用的软件开发模型
    MYSQL索引的类型和索引的方式
    mysql errno 150
    士兵杀敌(五)
    stringstream字符串流
    士兵杀敌(二)(线段树+树状数组)
    士兵杀敌(一)(树状数组)
    C语言文件读写操作总结
    BC第二场
  • 原文地址:https://www.cnblogs.com/yuxiaoyiyou/p/10323433.html
Copyright © 2011-2022 走看看