Java/PDF RTF/RTF Writer — различия между версиями

Материал из Java эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:58, 1 июня 2010

HelloWorld Rtf

   <source lang="java">

import java.io.FileOutputStream; import com.lowagie.text.Document; import com.lowagie.text.Paragraph; import com.lowagie.text.rtf.RtfWriter2; public class HelloWorldRtf {

 public static void main(String[] args) {
   try {
     Document document = new Document();
     RtfWriter2.getInstance(document, new FileOutputStream("HelloWorldRtf.rtf"));
     document.open();
     document.add(new Paragraph("Hello World!"));
     document.close();
   } catch (Exception e) {
     e.printStackTrace();
   }
 }

}

      </source>