我想使用JAVA使用PDFBox以PDF格式编写HTML内容。我怎么写呢?有什么方法可以添加HTML内容吗?有不同的添加方法,但无法添加HTML内容。
答案 0 :(得分:1)
自2.0.6起,pdfbox中还没有HTML渲染支持。但是在他们未来的版本中听说过很少有关于此功能的承诺。
答案 1 :(得分:-2)
您也可以使用IText做同样的事情,使用此代码。
import java.io.FileOutputStream;
import java.io.StringReader;
import com.lowagie.text.Document;
import com.lowagie.text.PageSize;
import com.lowagie.text.html.simpleparser.HTMLWorker;
import com.lowagie.text.pdf.PdfWriter;
public class Test {
public static void main(String ... args ) {
try {
Document document = new Document(PageSize.LETTER);
PdfWriter.getInstance(document, new FileOutputStream("E:\\yogesh\\test.pdf"));
document.open();
document.addAuthor("author");
document.addSubject("subject");
document.addCreationDate();
document.addTitle("title");
HTMLWorker htmlWorker = new HTMLWorker(document);
String str = "<html><head></head><body>"+
"<table border='1'><tr><td>Demo<td>" +
"<td bgcolor='red'>DEMO<td></tr>DEMO</table>" +
"</body></html>";
htmlWorker.parse(new StringReader(str));
document.close();
System.out.println("Done");
}
catch (Exception e) {
e.printStackTrace();
}
}
}