jodconverter实现在线预览

简介: 现在预览是一个非常常用的供能。项目经理在会上提出必须实现改功能。首先博主先确定了一个思路:其他文档转成配pdf然后通过流发送到前台。因为前台支持pdf,可以直接预览。说干就干。下面上代码。


image.png

现在预览是一个非常常用的供能。项目经理在会上提出必须实现改功能。首先博主先确定了一个思路:其他文档转成配pdf然后通过流发送到前台。因为前台支持pdf,可以直接预览。说干就干。下面上代码。

1.方案一:使用jodconverter-spring-boot-starter方法

在一些时间的调研后,发现spring提供jodconverter-spring-boot-starter的jar包。能够完成该功能。我们只需要按照他的API实现即可。

1.修改pom文件

  <!--jodconverter 核心包 -->
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-core</artifactId>
            <version>4.2.2</version>
        </dependency>
        <!--springboot支持包,里面包括了自动配置类 -->
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-spring-boot-starter</artifactId>
            <version>4.2.2</version>
        </dependency>
        <!--jodconverter 本地支持包 -->
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-local</artifactId>
            <version>4.2.2</version>
        </dependency>

2.修改application.xml

jodconverter:
  local:
    enabled: true
    max-tasks-per-process: 10
    port-numbers: 8100

3.调用方法

@RestController
public class OnlinePreviewController {
    // 第一步:转换器直接注入
    @Autowired
    DocumentConverter documentConverter;
    @GetMapping("/toPdfFile")
    public String toPdfFile(FileMessage fileMessage) {
        // 获取HttpServletResponse
        HttpServletResponse response =
            ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getResponse();
        // 需要转换的文件
        File file = new File(fileMessage.getFileDownloadUri());
        try {
            // 转换之后文件生成的地址
            File newFile = new File("D:/common_files/pdf");
            if (!newFile.exists()) {
                newFile.mkdirs();
            }
            String converterPdf = "D:/common_files/pdf" + "/" + fileMessage.getFileName() + "-pdf.pdf";
            // 文件转化
            documentConverter.convert(file).to(new File(converterPdf)).execute();
            // 使用response,将pdf文件以流的方式发送的前段
            ServletOutputStream outputStream = response.getOutputStream();
            // 读取文件
            InputStream in = new FileInputStream(new File(converterPdf));
            // copy文件
            int i = IOUtils.copy(in, outputStream);
            System.out.println(i);
            in.close();
            outputStream.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return "This is to pdf";
    }
}

但是这种会发生excle过长穿行的情况,放弃。。。

2.方案二:使用com.artofsolving包

在经过又一番调研后,发现com.artofsolving也能实现该功能。

1.修改pom文件

       <dependency>
            <groupId>com.artofsolving</groupId>
            <artifactId>jodconverter</artifactId>
            <version>2.2.2</version>
        </dependency>
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>jurt</artifactId>
            <version>3.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>ridl</artifactId>
            <version>3.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>juh</artifactId>
            <version>3.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>unoil</artifactId>
            <version>3.0.1</version>
        </dependency>

注意2.2.2是在maven服务器上没有m所以需要单独下载处理,直接上网盘地址。

链接:https://pan.baidu.com/s/1d5oe7OIaq6Wi-wR70860jA

提取码:touy

2.Controller类

import com.artofsolving.jodconverter.DocumentConverter;
import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
import org.apache.commons.io.IOUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
@RestController
public class OnlinePreviewController {
    @GetMapping("/toPdfFile")
    public void toPdfFile(FileMessage fileMessage) throws IOException {
        // 获取HttpServletResponse
        HttpServletResponse response =
            ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getResponse();
        // 源文件目录
        File inputFile = new File(fileMessage.getFileDownloadUri());
        if (!inputFile.exists()) {
            System.out.println("源文件不存在!");
            return;
        }
        // 转换之后文件生成的地址
        File newFile = new File("D:/common_files/pdf");
        if (!newFile.exists()) {
            newFile.mkdirs();
        }
        String converterPdf = "D:/common_files/pdf" + "/" + fileMessage.getFileName() + "-pdf.pdf";
        // 输出文件目录
        File outputFile = new File(converterPdf);
        if (!outputFile.getParentFile().exists()) {
            outputFile.getParentFile().exists();
        }
        // 调用openoffice服务线程
        String command =
            "C:/Program Files (x86)/OpenOffice 4/program/soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\"";
        Process p = Runtime.getRuntime().exec(command);
        // 连接openoffice服务
        OpenOfficeConnection connection = new SocketOpenOfficeConnection("127.0.0.1", 8100);
        connection.connect();
        // 转换
        DocumentConverter converter = new ConverterDocument(connection);
        converter.convert(inputFile, outputFile);
        ServletOutputStream outputStream = response.getOutputStream();
        // 读取文件
        InputStream in = new FileInputStream(new File(converterPdf));
        // copy文件
        int i = IOUtils.copy(in, outputStream);
        in.close();
        outputStream.close();
        // 关闭连接
        connection.disconnect();
        // 关闭进程
        p.destroy();
        System.out.println("转换完成!");
    }
}

其中转换方法为:

DocumentConverter converter = new ConverterDocument(connection);
        converter.convert(inputFile, outputFile);

因为excel折行问题 所以我们把纸张改变 重写了ConverterDocument。

3.ConverterDocument

import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.converter.StreamOpenOfficeDocumentConverter;
import com.sun.star.awt.Size;
import com.sun.star.beans.PropertyValue;
import com.sun.star.lang.XComponent;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.view.PaperFormat;
import com.sun.star.view.XPrintable;
public class ConverterDocument extends StreamOpenOfficeDocumentConverter {
    public ConverterDocument(OpenOfficeConnection connection) {
        super(connection);
    }
    public final static Size A5, A4, A3;
    public final static Size B4, B5, B6;
    public final static Size paperSize;
    static {
        A5 = new Size(14800, 21000);
        A4 = new Size(21000, 29700);
        A3 = new Size(29700, 42000);
        B4 = new Size(25000, 35300);
        B5 = new Size(17600, 25000);
        B6 = new Size(12500, 17600);
        // 最大限度 宽 1600000
        paperSize = new Size(29700, 27940);
    }
    @Override
    protected void refreshDocument(XComponent document) {
        super.refreshDocument(document);
        XPrintable xPrintable = (XPrintable)UnoRuntime.queryInterface(XPrintable.class, document);
        PropertyValue[] printerDesc = new PropertyValue[2];
        // 转换
        printerDesc[0] = new PropertyValue();
        printerDesc[0].Name = "PaperFormat";
        printerDesc[0].Value = PaperFormat.USER;
        // 纸张大小
        printerDesc[1] = new PropertyValue();
        printerDesc[1].Name = "PaperSize";
        printerDesc[1].Value = paperSize;
        try {
            xPrintable.setPrinter(printerDesc);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

但是这里有一个问题,多sheet页,只有第一页改变了,所以解决办法想了两个。

  1. 将多个sheet合成一个。
  2. 将多sheet也分开打印。

但是因为偶然机会发现了kkFileView 开源项目,emmmmmmmm,真香。


相关文章
|
Web App开发 前端开发 Android开发
前端预览PDF文件(使用PDFJS)
我准备出一篇文章来介绍一下如何使用 PDFJS 。
1834 0
前端预览PDF文件(使用PDFJS)
|
存储 PHP 数据安全/隐私保护
Ueditor结合七牛云存储上传图片、附件和图片在线管理的实现和最新更新
最新下载地址: https://github.com/widuu/qiniu_ueditor_1.4.3 Ueditor七牛云存储版本 注意事项 老版本请查看 : https://github.com/widuu/qiniu_ueditor_1.
3114 0
|
1月前
|
资源调度 前端开发 JavaScript
安利一款基于canvas/svg的富文本编辑器-支持在线导出PDF、DOCX
高性能:利用Canvas和SVG进行图形和矢量图形的渲染,提供高性能的绘图能力。 可扩展性:Canvas-Editor是一个开源项目,支持通过插件机制扩展编辑器的功能,如DOCX、PDF导出、表格分页等。 丰富的文本编辑功能:支持多种文本编辑操作,如插入表格、分页、性能优化等。
147 0
SublimeText配置Markdown编辑及预览
本文详细介绍了如何配置Sublime Text及相关插件,使之成为Markdown编辑器并且能够在浏览器中实现预览功能。
|
4月前
阿里图标库——批量下载图标
阿里图标库——批量下载图标
435 2
文本,在线预览docx.PTF,若依框架资料 + 资料文本库是好东西
文本,在线预览docx.PTF,若依框架资料 + 资料文本库是好东西
文本,在线预览docx.PTF,若依框架资料 + 资料文本库是好东西
|
4月前
|
移动开发 小程序 前端开发
uniap开发微信小程序如何在线预览pdf文件
这是一段关于在线预览和处理PDF的多方案说明,包括使用JavaScript库PDF.js(如`pdfh5.js`)实现H5页面预览,提供QQ群和技术博客链接以获取帮助和支持。还介绍了两个适用于Uni-app的插件,一个用于H5、小程序和App中的PDF预览和下载,另一个专门解决手机端PDF预览问题。此外,还详细描述了在Uni-app中使用微信小程序API`wx.openDocument`显示PDF的步骤,包括上传文件、配置权限和编写代码。
|
5月前
|
移动开发 JavaScript 前端开发
必知的技术知识:JqueryMedia插件使用,解决在线预览及打开PDF文件
必知的技术知识:JqueryMedia插件使用,解决在线预览及打开PDF文件
|
6月前
|
Web App开发 移动开发 搜索推荐
常见的Markdown在线编辑器
在线Markdown编辑器提供了更加稳定和流畅的用户体验。用户无需下载安装任何软件,只需打开浏览器,即可在任何设备上轻松使用这款编辑器,实现随时随地的写作。基于HTML5的在线Markdown编辑器可实现即时的编辑和预览功能
103 2
|
前端开发 JavaScript
uniapp上传图片至服务器,获得在线图片链接预览(实战)
uniapp上传图片至服务器,获得在线图片链接预览(实战)
439 0