ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    office ImportErrorDomain错误912

    Jan 9, 20233 min read

    在苹果手机浏览器上在线查看xls格式文件时,报了“未能完成的操作。(officeImportErrorDomain错误912)”错,如下图:

    错误原因:响应头设置不对,应该是xls格式的头用application/msexcel, xlsx格式的头是application/vnd.openxmlformats-officedocument.spreadsheetml.sheet。

    所以将respongse.setContentType("application/msexcel;charset=GBK")修改为

    respongse.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=GBK")

    相关文章

    什么是DRM 软件/

    DRM软件是一种用于保护数字版权、控制数字内容使用并防止盗版的技术,常用于音乐、电影、电子书和软件等领域。

    理解 OSI 七层模型 TCP:IP 协议簇,TCP 和 UDP 原理

    理解OSI七层模型和TCP/IP协议簇,以及TCP和UDP的工作原理。

    使用自动化升级工具进行Vue的升级

    使用自动化升级工具和@vue/compat库帮助从Vue 2平滑迁移到Vue 3,同时提供警告和优化建议以避免兼容性问题。

    MAC 如何开启SSH 的连接?

    在Mac上开启SSH连接,需通过终端启用远程登录、启动SSH服务,并使用ssh命令连接,同时注意确保安全性。

    what is apple ios ATS policy ?

    The Apple App Transport Security (ATS) policy enhances security and privacy on iOS, macOS, and tvOS by enforcing secure network connections like HTTPS and restricting insecure protocols and ciphers.