解决访问 jar 包里面的字体报错:OTS parsing error: incorrect file size in WOFF header

Posted 不忘初心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决访问 jar 包里面的字体报错:OTS parsing error: incorrect file size in WOFF header相关的知识,希望对你有一定的参考价值。

前言:jar 包里面的字体加载,浏览器 console 中报警告信息,这里记录一下解决方案。

附:自己的一个 jar 包源码 https://github.com/yuleGH/querydb

错误问题:

  谷歌浏览器 console 中报警告信息:

  Failed to decode downloaded font: http://localhost:8080/font/element-icons.woff?v=230-rc1
  OTS parsing error: incorrect file size in WOFF header

原因:

  网上说是由于使用 maven 的 resource 插件开启 filtering 功能后,会破坏有二进制内容的文件。

解决方案:

  我把我的 jar 包里面的代码贴出来,亲测可用

            <!--配置打包时字体文件不被maven拷贝,导致字体文件破坏-->
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.html</include>
                    <include>**/*.js</include>
                    <include>**/*.css</include>
                    <include>**/*.xml</include>
                </includes>
                <excludes>
                    <exclude>**/*.ttf</exclude>
                    <exclude>**/*.woff</exclude>
                </excludes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <includes>
                    <include>**/*.ttf</include>
                    <include>**/*.woff</include>
                </includes>
            </resource>

  



以上是关于解决访问 jar 包里面的字体报错:OTS parsing error: incorrect file size in WOFF header的主要内容,如果未能解决你的问题,请参考以下文章

同时引入字体jar包:simhei.jar 和simsun.jar到javaweb项目的lib文件夹,报错java.lang.OutOfMemoryError:

Spring Boot - Font Awesome OTS parsing error: Failed to convert 字体加载失败

Webpack“OTS 解析错误”加载字体

OTS 解析错误:无法从字体数据中实例化字体

解决jar包冲突引起的报错信息

创建 React 应用程序:无法解码下载的字体 | OTS 解析错误