91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot2中怎么實現在線文檔預覽

發布時間:2021-06-18 16:49:42 來源:億速云 閱讀:197 作者:Leah 欄目:大數據

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>

第二步,在配置文件中加入關鍵配置:

springboot2中怎么實現在線文檔預覽

第三步:核心類

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中怎么實現在線文檔預覽的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

区。| 海口市| 双辽市| 泰州市| 苍山县| 扎赉特旗| 泽普县| 安丘市| 湘阴县| 平山县| 连城县| 汉源县| 综艺| 元江| 乐都县| 宜兰县| 土默特右旗| 庆安县| 鹤山市| 城步| 永靖县| 宁强县| 元谋县| 遵义市| 普格县| 赣州市| 渑池县| 肇州县| 旅游| 马山县| 同江市| 兴海县| 桐柏县| 合作市| 仙居县| 阜新| 九江县| 高阳县| 鱼台县| 满城县| 绥化市|