【java工具类】html转换为pdf

归纳了几种用于转换为pdf的工具:

1.Java操作wkhtmltopdf实现Html转PDF
在java中调用wkhtmltopdf的命令Runtime.getRuntime().exec("c:\wkhtmltopdf.exe http://www.cnblogs.com c:\cnblogs.pdf")就可以实现转换。需要下载exe文件
https://www.cnblogs.com/xionggeclub/p/6144241.html

2.java使用flying-saucer-pdf-itext5进行html转pdf(高版本的工具类中解决了换行等问题,因此推荐使用此方法
https://www.jianshu.com/p/33b76197ceae


3.itext
https://blog.csdn.net/lidew521/article/details/68928205

猜你喜欢

转载自blog.csdn.net/xiaren_1988/article/details/114699757