解决访问 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 包里面的代码贴出来,亲测可用

            
            <resource>
                <directory>src/main/resourcesdirectory>
                <filtering>truefiltering>
                <includes>
                    <include>**/*.propertiesinclude>
                    <include>**/*.htmlinclude>
                    <include>**/*.jsinclude>
                    <include>**/*.cssinclude>
                    <include>**/*.xmlinclude>
                includes>
                <excludes>
                    <exclude>**/*.ttfexclude>
                    <exclude>**/*.woffexclude>
                excludes>
            resource>
            <resource>
                <directory>src/main/resourcesdirectory>
                <filtering>falsefiltering>
                <includes>
                    <include>**/*.ttfinclude>
                    <include>**/*.woffinclude>
                includes>
            resource>

  

转载于:https://www.cnblogs.com/yuxiaole/p/9739814.html

你可能感兴趣的:(解决访问 jar 包里面的字体报错:OTS parsing error: incorrect file size in WOFF header)