itextg 5.5.3 罐子
xmlworker 5.5.3 jar
测试.html
<html xmlns="http://www.w3.org/1999/xhtml" lang="cs">
<head>
</head>
<body>
Test: ?š??žýáíé ? ? ? ?
<div style="font-family: 'Times New Roman',font-weight: bold,backround-color blue;">
Test: ?š??žýáíé ? ? ? ?
</div>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
转换HTML到PDF.java
public class ConvertHTMLToPDF {
public static final String RESULT = Environment.getExternalStorageDirectory().getAbsolutePath() + "/Notes/test.pdf";
public static final String RESORCE = Environment.getExternalStorageDirectory().getAbsolutePath() + "/Notes/html/test.html";
void convertHTMLToPDF() throws IOException, DocumentException {
Rectangle pagesize = new Rectangle(415,1750);
Document document = new Document(pagesize);
PdfWriter writer = PdfWriter.getInstance(document, new …Run Code Online (Sandbox Code Playgroud)