java pdf页数_使用Java的Pdf页数

没错iText在打开时解析相当多的PDF(它不读取流对象的内容,但是这是关于它)…

除非你使用PdfReader(RandomAccessFileOrArray)构造函数,在这种情况下,它只会读取外部参照(大部分是必需的),但不会解析任何东西,直到你开始请求特定对象(直接或通过各种调用).

The first PDF program I ever wrote did exactly this. It opened up a PDF and doing the bare minimum amount of work necessary, read the number of pages. It didn’t even parse the xrefs it didn’t have to. Haven’t thought about that program in years…

所以虽然效率不是很高,但使用RandomAccessFileOrArray将会更有效率:

int efficientPDFPageCount(String path) {

RandomAccessFileOrArray file = new RandomAccessFileOrArray(path, false, true );

PdfReader reader = new PdfReader(file);

int ret = reader.getNumberOfPages();

reader.close();

return ret;

}

更新:

itext API经过了一番大修.现在(5.4.x版)正确的使用方法是通过java.io.RandomAccessFile:

int efficientPDFPageCount(File file) {

RandomAccessFile raf = new RandomAccessFile(file, "r");

RandomAccessFileOrArray pdfFile = new RandomAccessFileOrArray(

new RandomAccessSourceFactory().createSource(raf));

PdfReader reader = new PdfReader(pdfFile, new byte[0]);

int pages = reader.getNumberOfPages();

reader.close();

return pages;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值