iText操作错误:PdfReader not opened with owner password

   用iText读取一个pdf文件,然后把它保存成另一个pdf文件(相当于复制一份),代码如下:

 

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 pdfCopy 
{
	public static void main(String[] args)
	{
		String filepath = "C:\\a.pdf";
		String savepath = "C:\\b.pdf";
		copyLocalFiles(filepath, savepath);
	}
	
	public static void copyLocalFiles(String filepath, String savepath)
	{
		try 
		{
			PdfReader reader = new PdfReader(filepath);
			
			int n = reader.getNumberOfPages();
			Document document = new Document(reader.getPageSize(1));
			PdfCopy copy = new PdfCopy(document, new FileOutputStream(savepath));
						
			document.open();
			
			for(int i=1; i<=n; i++)
			{
				document.newPage(); 
				PdfImportedPage page = copy.getImportedPage(reader, i);
				copy.addPage(page);
			}
			
			document.close();

		} catch (IOException e) {
			e.printStackTrace();
		} catch(DocumentException e) {
			e.printStackTrace();
		}
	}
	
}

    

 

     运行时出现了下面这样的错误:

 

Exception in thread "main" java.lang.IllegalArgumentException: PdfReader not opened with owner password
	at com.lowagie.text.pdf.PdfReaderInstance.getImportedPage(Unknown Source)
	at com.lowagie.text.pdf.PdfCopy.getImportedPage(Unknown Source)

 

    上网查了一下,最后好不容易找到了原因,找到了解决办法。原来,我用的iText是itext-2.1.4.jar,使用以前的版本itext-2.0.2.jar,这时就不会出现这个错误了,就可以进行pdf文件的读取和保存了。

 

    保存效果还是蛮好的,而且也支持中文。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值