Itext 중국어 글꼴 솔루션 doc 문서 생성

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

import com.lowagie.text.Font;

import com.lowagie.text.PageSize;

import com.lowagie.text.Paragraph;

import com.lowagie.text.pdf.BaseFont;

import com.lowagie.text.rtf.RtfWriter2;

import org.junit.Test;



import java.io.FileOutputStream;



/**

 * Created with IntelliJ IDEA.

 * User: HYY

 * Date: 13-8-1

 * Time:   9:57

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

 */

public class ChineseTest {

    @Test

    public void test() throws Exception {

        //   word  ,        

        Document document = new Document(PageSize.A4);

        //      

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

        document.open();



        BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);



        Font FontChinese = new Font(bfChinese, 14, Font.NORMAL);

        Paragraph paragraph = new Paragraph("IText         ——     ", FontChinese);



        document.add(paragraph);



        document.close();

    }

}

좋은 웹페이지 즐겨찾기