ITEXTは繰り返しテストを経て、この方法はwordをサポートします
995 ワード
// step 1:
Document document = new Document();
try {
// step 2:
// rtf
RtfWriter2.getInstance(document, new FileOutputStream(filePath + file));
// step 3: we open the document
document.open();
// , ,
// , word " ? ? ", 。
// word ,
RtfFont font = new RtfFont(" ", 36, Font.BOLD, Color.BLACK);
String text = " !this is a test";
document.add(new Paragraph(text, font));
System.out.println(font.getFamilyname());
}
catch(DocumentException de) {
System.err.println(de.getMessage());
}
catch(IOException ioe) {
System.err.println(ioe.getMessage());
}finally{
document.close();
}
// step 5: we close the document