springboot2中怎么實(shí)現(xiàn)在線文檔預(yù)覽,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),綠春企業(yè)網(wǎng)站建設(shè),綠春品牌網(wǎng)站建設(shè),網(wǎng)站定制,綠春網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,綠春網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
第一步,需要引入相應(yīng)的jar:
org.jodconverter jodconverter-core 4.2.2 org.jodconverter jodconverter-spring-boot-starter 4.2.2 org.jodconverter jodconverter-local 4.2.2
第二步,在配置文件中加入關(guān)鍵配置:
第三步:核心類
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 * 創(chuàng)建時(shí)間: 2019/11/4. 17:42 * 地點(diǎn):廣州 * 目的: 在線文檔預(yù)覽 * * 總的來說,這部分的代碼是可以使用的,但是效果并沒有預(yù)期的好,第一,中文亂碼問題沒解決,第二,格式并沒有預(yù)期的好。 * 業(yè)務(wù)邏輯這一塊,不推薦這么弄,建議從源頭控制上傳文件,然后來預(yù)覽操作。 * * 如果后續(xù)需要使用,1 放開maven中的 jodconverter 包 * 2 將 application-config.properties 文件相應(yīng) jodconverter 的配置放開 * 3 將該類下面的 view 方法放開,調(diào)用 view 即可。 * * 備注說明: */ @Controller @RequestMapping("/doc") public class DocumentController { private static Logger log = LoggerFactory.getLogger(DocumentController.class); @Resource private DocumentConverter documentConverter; /** * 在線預(yù)覽 * @param response * @return */ @RequestMapping(value = "/view", method = RequestMethod.GET) @ResponseBody public ResultJson view(HttpServletResponse response){ //需要轉(zhuǎn)換的文件 File file = new File("E:\\下載\\kd.xlsx"); //文件轉(zhuǎn)換后的地址 File toFile = new File("E:\\temp"); if (!toFile.exists()){ toFile.mkdirs(); } ServletOutputStream outputStream = null; InputStream in = null; //關(guān)鍵方法,轉(zhuǎn)換為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")); //將文件轉(zhuǎn)換復(fù)制到流 IOUtils.copy(in, outputStream); } catch (OfficeException e) { e.printStackTrace(); log.error("轉(zhuǎn)換文件失敗"); } 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); } }
看完上述內(nèi)容,你們掌握springboot2中怎么實(shí)現(xiàn)在線文檔預(yù)覽的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!