Document document = new Document(PageSize.A4);
RtfWriter2 rtf = RtfWriter2.getInstance(document, new FileOutputStream("path"));
document.open();
BaseFont bfChinese = BaseFont.createFont("STSongStd-Light",
"UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
rtf.importRtfDocument(new FileInputStream("oldPath"));
document.add(new Paragraph("Hello World"));
document.close();
java.lang.NullPointerException
at com.lowagie.text.rtf.parser.destinations.RtfDestinationFontTable.importSystemFonts(Unknown Source)
at com.lowagie.text.rtf.parser.destinations.RtfDestinationFontTable.init(Unknown Source)
at com.lowagie.text.rtf.parser.destinations.RtfDestinationFontTable.setParser(Unknown Source)
at com.lowagie.text.rtf.parser.destinations.RtfDestinationMgr.addDestination(Unknown Source)
at com.lowagie.text.rtf.parser.ctrlwords.RtfCtrlWordHandler.<init>(Unknown Source)
at com.lowagie.text.rtf.parser.ctrlwords.RtfCtrlWordMap.<init>(Unknown Source)
at com.lowagie.text.rtf.parser.ctrlwords.RtfCtrlWordMgr.<init>(Unknown Source)
at com.lowagie.text.rtf.parser.RtfParser.init(Unknown Source)
at com.lowagie.text.rtf.parser.RtfParser.importRtfDocument(Unknown Source)
at com.lowagie.text.rtf.RtfWriter2.importRtfDocument(Unknown Source)
at com.lowagie.text.rtf.RtfWriter2.importRtfDocument(Unknown Source)
猛跑小猪
相关分类