您好,登錄后才能下訂單哦!
springboot2中怎么實現在線文檔預覽,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
第一步,需要引入相應的jar:
<!--在線文件預覽================================================================--> <!--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>
第二步,在配置文件中加入關鍵配置:
第三步:核心類
package com.yunji.kwxt.document; import com.yunji.kwxt.common.enums.ResultEnum; import com.yunji.kwxt.common.model.ResultJson; import org.apache.commons.io.IOUtils; import org.jodconverter.DocumentConverter; import org.jodconverter.office.OfficeException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import javax.annotation.Resource; 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; /** * @author :LX * 創建時間: 2019/11/4. 17:42 * 地點:廣州 * 目的: 在線文檔預覽 * * 總的來說,這部分的代碼是可以使用的,但是效果并沒有預期的好,第一,中文亂碼問題沒解決,第二,格式并沒有預期的好。 * 業務邏輯這一塊,不推薦這么弄,建議從源頭控制上傳文件,然后來預覽操作。 * * 如果后續需要使用,1 放開maven中的 jodconverter 包 * 2 將 application-config.properties 文件相應 jodconverter 的配置放開 * 3 將該類下面的 view 方法放開,調用 view 即可。 * * 備注說明: */ @Controller @RequestMapping("/doc") public class DocumentController { private static Logger log = LoggerFactory.getLogger(DocumentController.class); @Resource private DocumentConverter documentConverter; /** * 在線預覽 * @param response * @return */ @RequestMapping(value = "/view", method = RequestMethod.GET) @ResponseBody public ResultJson view(HttpServletResponse response){ //需要轉換的文件 File file = new File("E:\\下載\\kd.xlsx"); //文件轉換后的地址 File toFile = new File("E:\\temp"); if (!toFile.exists()){ toFile.mkdirs(); } ServletOutputStream outputStream = null; InputStream in = null; //關鍵方法,轉換為PDF try { documentConverter.convert(file).to(new File("E:/temp/1.pdf")).execute(); outputStream = response.getOutputStream(); in = new FileInputStream(new File("E:/temp/1.pdf")); //將文件轉換復制到流 IOUtils.copy(in, outputStream); } catch (OfficeException e) { e.printStackTrace(); log.error("轉換文件失敗"); } catch (IOException e) { e.printStackTrace(); log.error("獲取流失敗"); } finally { if (in != null){ try { in.close(); } catch (IOException e) { e.printStackTrace(); } } if (outputStream != null){ try { outputStream.close(); } catch (IOException e) { e.printStackTrace(); } } } return new ResultJson(null, ResultEnum.SUCCESS.getStatus(), "成功", null); } }
看完上述內容,你們掌握springboot2中怎么實現在線文檔預覽的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。