Chinaunix首页 | 论坛 | 博客
  • 博客访问: 949699
  • 博文数量: 264
  • 博客积分: 10107
  • 博客等级: 上将
  • 技术积分: 2455
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-09 16:34
文章分类

全部博文(264)

文章存档

2012年(1)

2011年(11)

2010年(128)

2009年(82)

2008年(42)

我的朋友

分类: Java

2010-10-11 14:01:02

 

关键字: pdf 纸张 页面 大小 版心
import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfWriter;
/**
 * 
 *
 */
public class Simple6 {
	   @SuppressWarnings("deprecation")
	public static void main(String[] args) throws DocumentException, IOException {  
		   //设置页面尺寸(纸张尺寸)
		   Rectangle pageSize = new Rectangle(288/2, 720/2);
	       //设置版心尺寸(内容尺寸,边距)
		   Document doc = new Document(pageSize, 36, 18, 72, 72);
		   PdfWriter.getInstance(doc, new FileOutputStream("E:/HelloWorld.pdf"));
		   doc.open();
		   doc.add(new Paragraph("Test......."));
		   doc.add(new Paragraph("Test......."));
		   doc.add(new Paragraph("Test......."));
		   doc.close();
	   }  
}


  • (2.5 MB)
  • 下载次数: 20
阅读(1862) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~