자바 부 텍스트 생 성 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>";
}
}
테스트 결과:이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.