当前位置:   article > 正文

Java中对OFD文件转为PDF操作(简单,详解)_java ofd转pdf

java ofd转pdf

目录

1、引入Maven

2、 代码示例

 3、基于Minio存储文件返回转换后的pdf文件


1、引入Maven

ps:

        引入后启动项目控制台可能会打印红色警告:

        SLF4J: Class path contains multiple SLF4J bindings.

如果你出现了这个问题,不要慌。出错的原因可能不一样,exclusion写法也会不一样。解决方法放在另外一篇文章了:解决SLF4J: Class path contains multiple SLF4J bindings.

  1. <dependency>
  2. <groupId>org.ofdrw</groupId>
  3. <artifactId>ofdrw-converter</artifactId>
  4. <version>1.17.9</version>
  5. <scope>compile</scope>
  6. <exclusions>
  7. <exclusion>
  8. <groupId>org.apache.logging.log4j</groupId>
  9. <artifactId>log4j-slf4j-impl</artifactId>
  10. </exclusion>
  11. </exclusions>
  12. </dependency>
2、 代码示例
  1. public class TestOfd2Pdf {
  2. // 测试比较简单的转换方式
  3. public static void main(String[] args) {
  4. File ofdFile = new File("E:\\044002000311_72262900.ofd");
  5. Path pdfPath = Paths.get("E:\\1.pdf");
  6. ConvertHelper.toPdf(ofdFile.toPath(), pdfPath);
  7. }
  8. }
 3、基于Minio存储文件返回转换后的pdf文件

ps:

        byte[]、File、Path等之间的转换。

  1. public File convertOFD2PDF(String bucketName, String fileName, String filePdfPath) {
  2. byte[] bytes = downloadUseBytes(bucketName, fileName).get("fileBytes");
  3. String ofdFileName = "/toPdf" + System.currentTimeMillis() + ".ofd";
  4. File ofdFile = FileUtils.writeBytes(bytes,
  5. FileUtils.createTempFile(ofdFileName, true));
  6. Path ofdPath = ofdFile.toPath();
  7. Path pdfPath = Paths.get(filePdfPath);
  8. ConvertHelper.toPdf(ofdPath, pdfPath);
  9. ofdFile.delete(); // 临时ofd文件使用完后删除
  10. return pdfPath.toFile();
  11. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Guff_9hys/article/detail/1007896
推荐阅读
相关标签
  

闽ICP备14008679号