78

Spring MVC を使用しています。リクエスト本文から入力を受け取り、データを pdf に追加し、pdf ファイルをブラウザーに返すサービスを作成する必要があります。PDF ドキュメントは、itextpdf を使用して生成されます。Spring MVC を使用してこれを行うにはどうすればよいですか。私はこれを使ってみました

@RequestMapping(value="/getpdf", method=RequestMethod.POST)
public Document getPDF(HttpServletRequest request , HttpServletResponse response, 
      @RequestBody String json) throws Exception {
    response.setContentType("application/pdf");
    response.setHeader("Content-Disposition", "attachment:filename=report.pdf");
    OutputStream out = response.getOutputStream();
    Document doc = PdfUtil.showHelp(emp);
    return doc;
}

PDFを生成するshowhelp関数。当分の間、ランダムなデータをpdfに入れています。

public static Document showHelp(Employee emp) throws Exception {
    Document document = new Document();

    PdfWriter.getInstance(document, new FileOutputStream("C:/tmp/report.pdf"));
    document.open();
    document.add(new Paragraph("table"));
    document.add(new Paragraph(new Date().toString()));
    PdfPTable table=new PdfPTable(2);

    PdfPCell cell = new PdfPCell (new Paragraph ("table"));

    cell.setColspan (2);
    cell.setHorizontalAlignment (Element.ALIGN_CENTER);
    cell.setPadding (10.0f);
    cell.setBackgroundColor (new BaseColor (140, 221, 8));                                  

    table.addCell(cell);                                    
    ArrayList<String[]> row=new ArrayList<String[]>();
    String[] data=new String[2];
    data[0]="1";
    data[1]="2";
    String[] data1=new String[2];
    data1[0]="3";
    data1[1]="4";
    row.add(data);
    row.add(data1);

    for(int i=0;i<row.size();i++) {
      String[] cols=row.get(i);
      for(int j=0;j<cols.length;j++){
        table.addCell(cols[j]);
      }
    }

    document.add(table);
    document.close();

    return document;   
}

これは間違っていると確信しています。クライアントのファイルシステムに保存できるように、そのpdfを生成し、保存/開くダイアログボックスをブラウザーで開く必要があります。私を助けてください。

4

1 に答える 1

143

で正しい軌道に乗っていましたがresponse.getOutputStream()、コードのどこにもその出力を使用していません。基本的に、PDF ファイルのバイトを直接出力ストリームにストリーミングし、応答をフラッシュする必要があります。春には、次のように実行できます。

@RequestMapping(value="/getpdf", method=RequestMethod.POST)
public ResponseEntity<byte[]> getPDF(@RequestBody String json) {
    // convert JSON to Employee 
    Employee emp = convertSomehow(json);

    // generate the file
    PdfUtil.showHelp(emp);

    // retrieve contents of "C:/tmp/report.pdf" that were written in showHelp
    byte[] contents = (...);

    HttpHeaders headers = new HttpHeaders();
    headers.setContentType(MediaType.APPLICATION_PDF);
    // Here you have to set the actual filename of your pdf
    String filename = "output.pdf";
    headers.setContentDispositionFormData(filename, filename);
    headers.setCacheControl("must-revalidate, post-check=0, pre-check=0");
    ResponseEntity<byte[]> response = new ResponseEntity<>(contents, headers, HttpStatus.OK);
    return response;
}

ノート:

  • メソッドには意味のある名前を使用してください。PDF ドキュメントを書き込むメソッドに名前を付けることはshowHelpお勧めできません。
  • ファイルをbyte[]: に読み込む例はこちら
  • showHelp()2 人のユーザーが同時にリクエストを送信した場合にファイルが上書きされないように、内部の一時 PDF ファイル名にランダムな文字列を追加することをお勧めします。
于 2013-05-20T18:54:31.820 に答える