swagger傳遞文件對象file

先在swagger-editor中定義訪問路徑:java

必定要定義produces爲你所須要返回的mime類型,mime類型參考:http://www.w3school.com.cn/media/media_mimeref.aspwindows

選擇生成server端代碼:api

這裏我選擇的是jaxrs,是某個平臺的java代碼,具體是哪一個平臺沒去研究瀏覽器

生成號代碼以後,會有這樣的代碼測試

解壓以後,用intellij打開該目錄:ui

須要完善的代碼都在impl裏,裏面是空代碼:url

具體如何調用,參考client端代碼:orm

這樣就配置好了,固然,我這裏用得是jetty嵌入式開發,比較方便server

繼續話題,當jetty起來以後,好比本機的地址是localhost:33890,那麼在測試代碼裏須要設置basePath,對象

@Test
public void downloadGetTest() throws ApiException {
    String ddd= "111";
    String ddd= "aaa";
    String ddd= "zzz";
    api.getApiClient().setBasePath("http://localhost:33890");
    File response = api.downloadGet(ddd, ddd, ddd);
    System.out.println(response);
    // TODO: test validations
}

這樣請求就發過去了,server端impl/downloadimpl代碼以下:

public Response downloadGet(String ddd, String ddd, String ddd, SecurityContext securityContext) throws NotFoundException {
    String filename = ddd+ "-" + ddd+ "-" + ddd;
    String path = "http://yjsy.cupl.edu.cn/attachments/article/2689/2017%E5%B9%B4%E7%A1%95%E5%A3%AB%E7%A0%94%E7%A9%B6%E7%94%9F%E7%BB%9F%E8%80%83%E6%8B%9F%E6%8B%9B%E7%94%9F%E8%AE%A1%E5%88%92.pdf";
    byte[] getData = null;
    File tempFile = null;
    try {
        URL url = new URL(path);
        // 返回一個 URLConnection 對象,它表示到 URL 所引用的遠程對象的鏈接。
        URLConnection uc = url.openConnection();
        //讀取文件
        InputStream in = uc.getInputStream();
        byte[] b = new byte[1024];
        int len = 0;
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        while ((len = in.read(b)) != -1) {
            System.out.println("------ process continue -------");
            bos.write(b, 0, len);
        }
        bos.close();
        getData = bos.toByteArray();
        //這裏能夠指定存到windows上的路徑,必定要是已存在的目錄
        File directory = new File("d:\\");
        //寫文件
        tempFile = File.createTempFile(filename, ".pdf", directory);
        tempFile.deleteOnExit();
        FileOutputStream fos = new FileOutputStream(tempFile);
        fos.write(getData);
        System.out.println(tempFile.length());
        in.close();
        fos.close();
    } catch (MalformedURLException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
    return Response.ok().entity(tempFile).build();
}

Response是swagger生成的一個抽象類

執行請求後,在本地d盤下就會生成一個pdf的文件,同時在c盤的臨時文件夾下也會生成一樣的文件

C:\Users\jack\AppData\Local\Temp\download-1392513126829992389

若是使用瀏覽器訪問,也能在瀏覽器上顯示出pdf的內容,以下:

相關文章
相關標籤/搜索