자바 부 텍스트 생 성 pdf 파일 프로 세 스 분석

이 글 은 자바 가 부 텍스트 에 따라 pdf 파일 을 생 성 하 는 과정 을 분석 하 는 것 을 소개 합 니 다.글 에 서 는 예제 코드 를 통 해 매우 상세 하 게 소개 되 어 있 으 며,여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가치 가 있 으 므 로 필요 한 친 구 는 참고 하 시기 바 랍 니 다.

public class PdfUtil {

  /*
   *   pdf   
   * wmy 12:40 2019/8/9
   * @Param [guideBook, pdfPath]
   * @return java.lang.Boolean
   **/
  public static Boolean htmlToPdf(GuideBook guideBook, String pdfPath) {
    try {
      // 1.  document
      Document document = new Document();
      // 2.       (Writer) document    ,     (Writer)           。
      //   PdfWriter                  ,             ,              。
      PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(pdfPath));
      // 3.    
      document.open();
      //    html
      //html       ,    :
      org.jsoup.nodes.Document contentDoc = Jsoup.parseBodyFragment(getHtml(guideBook.getTitle())+guideBook.getContent());
      org.jsoup.nodes.Document.OutputSettings outputSettings = new org.jsoup.nodes.Document.OutputSettings();
      outputSettings.syntax(org.jsoup.nodes.Document.OutputSettings.Syntax.xml);
      contentDoc.outputSettings(outputSettings);
      String parsedHtml = contentDoc.outerHtml();
      //   font-family     ,{font-family:  }      。
      InputStream cssIs = new ByteArrayInputStream("* {font-family: PingFang-SC-Medium.otf;}".getBytes("UTF-8"));
      //      html  css      
      //           ,            ,    。
      XMLWorkerHelper.getInstance().parseXHtml(writer, document, new ByteArrayInputStream(parsedHtml.getBytes()), cssIs);
      // 5.    
      document.close();
    } catch (Exception e) {
      e.printStackTrace();
      return false;
    }
    return true;
  }

  /*
   *     
   * wmy 9:54 2019/8/12
   * @Param [request, response, inputStream, fileName]
   * @return void
   **/
  public static void download(HttpServletRequest request, HttpServletResponse response, InputStream inputStream, String fileName){
    BufferedOutputStream bos = null;
    try {
      //        10k
      byte[] buffer = new byte[10240];
      //       
      // http://127.0.0.1:5002/guide-book/pdf?id=124
      fileName = fileName.replaceAll("[\\pP\\p{Punct}]", "-").replace(" ", "-").replaceAll("[-]+", "-")+".pdf";
      String userAgent = request.getHeader("user-agent").toLowerCase();
      if (userAgent.contains("msie") || userAgent.contains("like gecko")) {
        fileName = URLEncoder.encode(fileName, "UTF-8");
      } else {
        fileName = new String(fileName.getBytes("UTF-8"), "iso-8859-1");
      }
      response.setCharacterEncoding("utf-8");
      response.setContentType("application/msword");
      response.setHeader("Content-Disposition", "attachment; filename=" + fileName);
      bos = new BufferedOutputStream(response.getOutputStream());
      int bytesRead = 0;
      while ((bytesRead = inputStream.read(buffer)) != -1) {
        bos.write(buffer, 0, bytesRead);
      }
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      if (bos != null) {
        try {
          bos.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
  }

  /*
   *   html
   * wmy 10:39 2019/8/12
   * @Param [title]
   * @return java.lang.String
   **/
  public static String getHtml(String title){
    return "<h1 align=\"center\">"+title+"</h1>";
  }

}
테스트 결과:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기