자바 통합 PDF,itext.jar

1882 단어 웹 응용 개발
우 리 는 때때로 여러 개의 PDF 파일 을 하나의.GUI 도구 로 통합 하 는 방식 이 필요 하 다.
자바 프로그램 을 사용 하여 PDF 를 어떻게 통합 하 는 지 에 대해 서 만 토론 합 니 다.우 리 는 itext.jar 에 만 사용 하면 임 무 를 완성 할 수 있 습 니 다.
코드 는 다음 과 같 습 니 다.코드 는 간단 합 니 다.더 이상 설명 하지 않 겠 습 니 다.

import java.io.FileOutputStream;
import java.io.IOException;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.pdf.PdfCopy;
import com.lowagie.text.pdf.PdfImportedPage;
import com.lowagie.text.pdf.PdfReader;

public class MergeFile {
public static void main(String[] args) {
String[] files = { "e:\\1.pdf", "e:\\2.pdf", "e:\\3.pdf" };
String savepath = "e:\\temp.pdf";
mergePdfFiles(files, savepath);
} /*
* * pdf * * @param files ( { "e:\\1.pdf", "e:\\2.pdf" ,
* "e:\\3.pdf"}) * @param newfile
* e:\\temp.pdf, * @return boolean
* true, false
*/

public static boolean mergePdfFiles(String[] files, String newfile) {
boolean retValue = false;
Document document = null;
try {
document = new Document(new PdfReader(files[0]).getPageSize(1));
PdfCopy copy = new PdfCopy(document, new FileOutputStream(newfile));
document.open();
for (int i = 0; i < files.length; i++) {
PdfReader reader = new PdfReader(files[i]);
int n = reader.getNumberOfPages();
for (int j = 1; j <= n; j++) {
document.newPage();
PdfImportedPage page = copy.getImportedPage(reader, j);
copy.addPage(page);
}
}
retValue = true;
} catch (Exception e) {
e.printStackTrace();
} finally {
document.close();
}
return retValue;
}
}

좋은 웹페이지 즐겨찾기