• 应用打开其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>
    --------------------- 
  • 相关阅读:
    软件工程之项目管理核心框架
    JPA @Column
    centos 安装 nodejs vue 工具链.
    c语言 打印二进制数
    Python import 导入指定目录的某块
    最近的一点思考,关于高手/大师/学霸
    同步与非同步,阻塞与非阻塞。
    Spring MVC 配置
    Java Web框架的基本组件
    add函数
  • 原文地址:https://www.cnblogs.com/yuxiaoyiyou/p/10323433.html
Copyright © 2020-2023  润新知