Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经看到您可以使用此处解释的配置文件将自定义字体添加到 Apache FOP 。但是,我没有使用 FOP 的本地安装,而是使用 maven 安装。我可以正确渲染pdf文件,但我不知道如何通过maven定义配置文件。
是否可以?
我发现您可以使用以下 java 代码执行此操作:
FopFactory fopFactory = FopFactory.newInstance(); File file = new File("path/to/file/userConfig.xml"); fopFactory.setUserConfig(file);