IText 가로로 doc 문서 생성

1943 단어 itext
Itext에서 doc 문서를 생성하려면 세 개의 패키지가 필요합니다: iTextasian.jar,iText-rtf-2.1.4.jar,iText-2.1.4.jar
직접 테스트에 오류가 없습니다. 코드는 다음과 같습니다.
import com.lowagie.text.*;

import com.lowagie.text.Rectangle;

import com.lowagie.text.rtf.RtfWriter2;





import java.io.FileOutputStream;



/**

 *         

 * User: HYY

 * Date: 13-8-1

 * Time:   9:54

 * To change this template use File | Settings | File Templates.

 */

public class RotatePageTest {

  

    public static void main(String[] args) throws Exception {

        //         

        Rectangle rectangle = new Rectangle(PageSize.A4);

        //   word  ,   ,    

        Document document = new Document(rectangle.rotate());



        RtfWriter2.getInstance(document, new FileOutputStream("C:/    IText  .doc"));

        document.open();

        document.close();

    }



}

좋은 웹페이지 즐겨찾기