分类: Java
2010-10-11 13:52:41
package test.pdf; import java.io.FileNotFoundException; import java.io.FileOutputStream; import com.lowagie.text.Document; import com.lowagie.text.DocumentException; import com.lowagie.text.Paragraph; import com.lowagie.text.pdf.PdfWriter; public class Simple1 { public static void main(String[] args) throws FileNotFoundException, DocumentException { Document doc = new Document(); PdfWriter.getInstance(doc, new FileOutputStream("E:/HelloWorld.pdf")); doc.open(); doc.add(new Paragraph("Hello World !")); doc.close(); } }