Java/PDF RTF/RTF Writer

Материал из Java эксперт
Версия от 05:58, 1 июня 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

HelloWorld Rtf

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();
    }
  }
}