1、iText簡介iText是一個開放原始碼的Java類別庫,可以用來方便地生成PDF檔案。大家透過訪問http://sourceforge.net/project/showfiles.php?group_id=15255&release_id=167948 下載最新版本的類別庫,下載完成之後會得到一個.jar包,把這個包加入JDK的classpath即可使用。
如果生成的PDF檔案中需要出現中文、日文、韓文字元,則還需要透過訪問http://itext.sourceforge.net/downloads/iTextAsian.jar 下載iTextAsian.jar包。
關於iText類別庫的使用,http://www.lowagie.com/iText/tutorial/index.html 有比較詳細的教學。該教學從入門開始,比較系統地介紹了在PDF檔案中放入文字、圖像、表格等的方法和技巧。
讀完這片教學,大致就可以做一些從簡單到複雜的PDF檔案了。不過,試圖透過教學解決在生成PDF檔案過程中遇到的所有困難無疑是一種奢望。所以,閱讀iText的api檔案顯得非常重要。讀者在下載類別庫的同時,也可以下載類別庫的檔案。
註:如果以上兩個下載連結無法下載而且透過網路也找不到這個jar包的同志可以留下郵箱地址,我會在兩個工作日之內發郵件過去。
以下部分我是我除錯透過的原始碼,提供大家參考:
import java.awt.*;
import java.io.*;
import com.lowagie.text.*;
import com.lowagie.text.Font;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.*;
/**
* 最近的專案中使用Itext將txt檔案轉換為PDF檔案, 並且實現對檔案的一些許可權控制。 現實對pdf檔案加
*密,新增水印等。
*/
public class PDFConvertBL
{
// txt原始檔案的路徑
private static final String txtFilePath = "d:/11.txt";
// 生成的pdf檔案路徑
private static final String pdfFilePath = "d:/22.pdf";
// 新增水印圖像路徑
// private static final String imageFilePath = "D:/33.jpg";
// 生成臨時檔案前置詞
private static final String prefix = "tempFile";
// 所有者密碼
private static final String OWNERPASSWORD = "12345678";
/**
* txt檔案轉換為pdf檔案
*
* @param txtFile txt檔案路徑
* @param pdfFile pdf檔案路徑
* @param userPassWord 使用者密碼
* @param waterMarkName 水印內容
* @param permission 操作許可權
*/
public static void generatePDFWithTxt(String txtFile, String pdfFile, String userPassWord, String waterMarkName,
int permission)
{
try
{
// 生成臨時檔案
File file = File.createTempFile(prefix, ".pdf");
// 建立pdf檔案到臨時檔案
if (createPDFFile(txtFile, file))
{
// 增加水印和加密
waterMark(file.getPath(), pdfFile, userPassWord, OWNERPASSWORD, waterMarkName, permission);
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
/**
* 建立PDF檔案
*
* @param txtFilePath txt檔案路徑(源檔案)
* @param pdfFilePath pdf檔案路徑(新檔案)
*/
private static boolean createPDFFile(String txtFilePath, File file)
{
// 設定紙張
Rectangle rect = new Rectangle(PageSize.A4);
// 設定頁碼
HeaderFooter footer = new HeaderFooter(new Phrase("頁碼:", setChineseFont()), true);
footer.setBorder(Rectangle.NO_BORDER);
// step1
Document doc = new Document(rect, 50, 50, 50, 50);
doc.setFooter(footer);
try
{
FileReader fileRead = new FileReader(txtFilePath);
BufferedReader read = new BufferedReader(fileRead);
// 設定pdf檔案生成路徑 step2
PdfWriter.getInstance(doc, new FileOutputStream(file));
// 開啟pdf檔案 step3
doc.open();
// 例項化Paragraph 取得寫入pdf檔案的內容,呼叫支援中文的方法. step4
while (read.ready())
{
// 新增內容到pdf(這裡將會按照txt檔案的原始樣式輸出)
doc.add(new Paragraph(read.readLine(), setChineseFont()));
}
// 關閉pdf檔案 step5
doc.close();
return true;
}
catch (Exception e)
{
e.printStackTrace();
return false;
}
}
/**
* 在pdf檔案中新增水印
*
* @param inputFile 原始檔案
* @param outputFile 水印輸出檔案
* @param waterMarkName 水印名字
*/
private static void waterMark(String inputFile, String outputFile, String userPassWord, String ownerPassWord,
String waterMarkName, int permission)
{
try
{
PdfReader reader = new PdfReader(inputFile);
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(outputFile));
// 設定密碼
stamper.setEncryption(userPassWord.getBytes(), ownerPassWord.getBytes(), permission, false);
BaseFont base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
int total = reader.getNumberOfPages() + 1;
// Image image = Image.getInstance(imageFilePath);
// image.setAbsolutePosition(200, 400);
PdfContentByte under;
int j = waterMarkName.length();
char c = 0;
int rise = 0;
for (int i = 1; i < total; i++)
{
rise = 500;
under = stamper.getUnderContent(i);
// 新增圖像
// under.addImage(image);
under.beginText();
under.setColorFill(Color.CYAN);
under.setFontAndSize(base, 30);
// 設定水印文字字型傾斜 開始
if (j >= 15)
{
under.setTextMatrix(200, 120);
for (int k = 0; k < j; k++)
{
under.setTextRise(rise);
c = waterMarkName.charAt(k);
under.showText(c + "");
rise -= 20;
}
}
else
{
under.setTextMatrix(180, 100);
for (int k = 0; k < j; k++)
{
under.setTextRise(rise);
c = waterMarkName.charAt(k);
under.showText(c + "");
rise -= 18;
}
}
// 字型設定結束
under.endText();
// 畫一個圓
// under.ellipse(250, 450, 350, 550);
// under.setLineWidth(1f);
// under.stroke();
}
stamper.close();
}
catch (Exception e)
{
e.printStackTrace();
}
}
/**
* 設定中文
*
* @return Font
*/
private static Font setChineseFont()
{
BaseFont base = null;
Font fontChinese = null;
try
{
base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.EMBEDDED);
fontChinese = new Font(base, 12, Font.NORMAL);
}
catch (DocumentException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
return fontChinese;
}
public static void main(String[] args) { generatePDFWithTxt(txtFilePath, pdfFilePath, "123", "水印文字", 16); } }