我正在尝试创建包含中文字符的 pdf。当我从 main 方法调用 generatePdf()` 时,它按预期工作。显示屏幕截图。但是,当我在 weblogic 服务器中部署并从浏览器“ http://localhost:7001/PdfGeneration/itext/genpdf ”调用时,它不会应用字体。我附上了屏幕截图。
以下设置:
- 网络逻辑版本:12.2.1
- Itextpdf,xmlworker:5.4.5
- 球衣版本:2.2
- Intellij IDE 2016.1.3
- JDK 1.8
style.css 只包含这个
body {
font-family: "arial unicode ms";
}
代码:
@Path("itext")
@Api(value = "itext service")
public class iTextService {
//creating an object in main and calling the method works fine
//this part is commented when calling form server (localhost)
public iTextService() throws Exception {
generatePdf();
}
public static void main(String args[]) throws Exception {
iTextService obj = new iTextService();
return;
}
@GET
@Path("genpdf")
@Produces("application/pdf")
public void generatePdf() throws Exception {
ByteArrayOutputStream out = new ByteArrayOutputStream();
Document doc = new Document(PageSize.A4, 40, 40, 20, 10);
PdfWriter writer = PdfWriter.getInstance(doc, new FileOutputStream("testPDF.pdf"));
doc.open();
parseHTML(writer, doc);
doc.close();
}
//this method gives the artifact path
// screen shot of the artifact is shown
public String getFilePath() {
URL url = getClass().getClassLoader().getResource("/resource/");
String path = url.getPath();
try {
path = URLDecoder.decode(path, "utf-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
path = new File(path).getPath();
return path;
}
public void parseHTML(PdfWriter writer, Document document) throws Exception {
//comment this when calling from main method
String pathToRes = getFilePath();
//case 1 : calling from main method
//byte[] encoded = Files.readAllBytes("style.css"));
//case 2: calling from browser (localhost)
byte[] encoded = Files.readAllBytes(Paths.get(pathToRes + "\\style.css"));
String style = new String(encoded);
CSSResolver cssResolver = new StyleAttrCSSResolver();
CssFile cssFile = XMLWorkerHelper.getCSS(new ByteArrayInputStream(style.getBytes()));
cssResolver.addCss(cssFile);
// HTML
XMLWorkerFontProvider fontProvider = new XMLWorkerFontProvider(XMLWorkerFontProvider.DONTLOOKFORFONTS);
//case 1
//fontProvider.register("ARIALUNI.ttf");
//case 2
fontProvider.register(pathToRes + "\\ARIALUNI.ttf");
//FontFactory.register(pathToFont + "\\ARIALUNI.ttf");
//FontFactory.setFontImp(fontProvider); //tried with these two along with exisitng code once
CssAppliers cssAppliers = new CssAppliersImpl(fontProvider);
HtmlPipelineContext htmlContext = new HtmlPipelineContext(cssAppliers);
htmlContext.setTagFactory(Tags.getHtmlTagProcessorFactory());
// Pipelines
PdfWriterPipeline pdf = new PdfWriterPipeline(document, writer);
HtmlPipeline html = new HtmlPipeline(htmlContext, pdf);
CssResolverPipeline css = new CssResolverPipeline(cssResolver, html);
// XML Worker
XMLWorker worker = new XMLWorker(css, true);
XMLParser parser = new XMLParser(worker);
parser.parse(new ByteArrayInputStream("<body><p>篆書 test</p></body>".getBytes()), Charset.forName("UTF-8"));
}
}