的文档,而且可以将XML、Html文件转化为PDF文件。
iText的安装非常方便,下载iText.jar文件后,只需要在系统的CLASSPATH中加入iText.jar的路径,在程序中就可以使用
iText类库了。
代码如下:
public class createPdf {
//自己做的一个简单例子,中间有图片之类的
//先建立Document对象:相对应的 这个版本的jar引入的是com.lowagie.text.Document
Document document = new Document(PageSize.A4, 36.0F, 36.0F, 36.0F, 36.0F)
public void getPDFdemo() throws DocumentException, IOException{
//这个导出用的是 iTextAsian.jar 和iText-2.1.3.jar 属于比较老的方法。 具体下在地址见:
//首先
//字体的定义:这里用的是自带的jar里面的字体
BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", false)
// 当然你也可以用你电脑里面带的字体库
//BaseFont bfChinese = BaseFont.createFont("C:/WINDOWS/Fonts/SIMSUN.TTC,1",BaseFont.IDENTITY_H, BaseFont.EMBEDDED)
//定义字体 注意在最新的包里面 颜色是封装的
Font fontChinese8 = new Font(bfChinese, 10.0F, 0, new Color(59, 54, 54))
//生成pdf的第一个步骤:
//保存本地指定路径
saveLocal()
document.open()
ByteArrayOutputStream ba = new ByteArrayOutputStream()
// PdfWriter writer = PdfWriter.getInstance(document, ba)
document.open()
//获取此编译的文件路径
String path = this.getClass().getClassLoader().getResource("").getPath()
//获取根路径
String filePath = path.substring(1, path.length()-15)
//获取图片路径 找到你需要往pdf上生成的图片
//这里根据自己的获取的路径写 只要找到图片位置就可以
String picPath = filePath +"\\WebContent" +"\\images\\"
//往PDF中添加段落
Paragraph pHeader = new Paragraph()
pHeader.add(new Paragraph(" 你要生成文字写这里", new Font(bfChinese, 8.0F, 1)))
//pHeader.add(new Paragraph("文字", 字体 可以自己写 也可以用fontChinese8 之前定义好的 )
document.add(pHeader)//在文档中加入你写的内容
//获取图片
Image img2 = Image.getInstance(picPath +"ccf-stamp-new.png")
//定义图片在文档中显示的绝对位置
img2.scaleAbsolute(137.0F, 140.0F)
img2.setAbsolutePosition(330.0F, 37.0F)
//将图片添加到文档中
document.add(img2)
//关闭文档
document.close()
/*//设置文档保存的文件名
response.setHeader("Content-
disposition", "attachmentfilename=\""+ new String(("CCF会员资格确认
函.pdf").getBytes("GBK"),"ISO-8859-1") + "\"")
//设置类型
response.setContentType("application/pdf")
response.setContentLength(ba.size())
ServletOutputStream out = response.getOutputStream()
ba.writeTo(out)
out.flush()*/
}
public static void main(String[]args) throws DocumentException, IOException{
createPdf pdf= new createPdf()
pdf.getPDFdemo()
}
//指定一个文件进行保存 这里吧文件保存到D盘的text.pdf
public void saveLocal() throws IOException, DocumentException{
//直接生成PDF 制定生成到D盘test.pdf
File file = new File("D:\\text2.pdf")
file.createNewFile()
PdfWriter.getInstance(document, new FileOutputStream(file))
}
}
import java.io.Fileimport java.io.FileOutputStream
import java.io.OutputStreamWriter
import java.io.Writer
import java.net.MalformedURLException
import java.net.URL
import org.pdfbox.pdmodel.PDDocument
import org.pdfbox.util.PDFTextStripper
public class PdfReader {
public void readFdf(String file) throws Exception {
// 是否排序
boolean sort = false
// pdf文件名
String pdfFile = file
// 输入文本文件名称
String textFile = null
// 编码方式
String encoding = "UTF-8"
// 开始提取页数
int startPage = 1
// 结束提取页数
int endPage = Integer.MAX_VALUE
// 文件输入流,生成文本文件
Writer output = null
// 内存中存储的PDF Document
PDDocument document = null
try {
try {
// 首先当作一个URL来装载文件,如果得到异常再从本地文件系统//去装载文件
URL url = new URL(pdfFile)
//注意参数已不是以前版本中的URL.而是File。
document = PDDocument.load(pdfFile)
// 获取PDF的文件名
String fileName = url.getFile()
// 以原来PDF的名称来命名新产生的txt文件
if (fileName.length() >4) {
File outputFile = new File(fileName.substring(0, fileName
.length() - 4)
+ ".txt")
textFile = outputFile.getName()
}
} catch (MalformedURLException e) {
// 如果作为URL装载得到异常则从文件系统装载
//注意参数已不是以前版本中的URL.而是File。
document = PDDocument.load(pdfFile)
if (pdfFile.length() >4) {
textFile = pdfFile.substring(0, pdfFile.length() - 4)
+ ".txt"
}
}
// 文件输入流,写入文件倒textFile
output = new OutputStreamWriter(new FileOutputStream(textFile),
encoding)
// PDFTextStripper来提取文本
PDFTextStripper stripper = null
stripper = new PDFTextStripper()
// 设置是否排序
stripper.setSortByPosition(sort)
// 设置起始页
stripper.setStartPage(startPage)
// 设置结束页
stripper.setEndPage(endPage)
// 调用PDFTextStripper的writeText提取并输出文本
stripper.writeText(document, output)
} finally {
if (output != null) {
// 关闭输出流
output.close()
}
if (document != null) {
// 关闭PDF Document
document.close()
}
}
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
PdfReader pdfReader = new PdfReader()
try {
// 取得E盘下的SpringGuide.pdf的内容
pdfReader.readFdf("E://SpringGuide.pdf")
} catch (Exception e) {
e.printStackTrace()
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)