文件名称:html转pdf,ITEXT转HTML为PDF解决中文不换行问题
文件大小:10.79MB
文件格式:ZIP
更新时间:2021-08-22 05:00:47
pdf不中文 不换行问题
1、core-renderer.jar该jar包修改过中文不换行问题
public static String getConversionHtmlCode(String linkcss,String htmlCode,String title){
String css = "";
css +="<style>";
css +="table{";
css +=" border-collapse: collapse;";
css +=" font-size: 15px;";
css +=" width: 98%;";
css +="}";
css +="";
css +="td{";
css +=" border: 1px solid #ddd;";
css +=" text-align: left;";
css +=" white-space: nowrap";
css +="}";
css +="th{";
css +=" border: 1px solid #ddd;";
css +=" text-align: left;";
css +="}";
css +="</style>";
String html = "<html><head>"+css+"</head><body margin:0;margin-top: 15px;margin-bottom: 15px; text-align: center; font-family:SimSun;\" >"+ title+"
"+ htmlCode + "</body></html>";
System.out.println("html:"+html);
return html;
}
【文件预览】:
ITEXT转HTML为PDF解决中文不换行问题
----ItextUtil.java(4KB)
----simsun.ttc(17.37MB)
----core-renderer.jar(1.03MB)
----iText-2.0.8.jar(1.16MB)