java 使用itext分割pdf 博客分类: java javapdfitext
程序员文章站
2024-03-24 19:21:40
...
split pdf online
在线pdf分割功能上线了。
戳这里试用
https://pdfmerge.online/pdfsplit/index.html
有了pdf合并功能还不够,总会遇到这种情况,下载了一本pdf文件,由于文件太大不方便阅读和传播。
那么按照章节进行分割是很正常的需求,
新上线的的pdf分割功能可以通过制定分割的页码进行分割,
比如制定第1,3,5,9页;
- 会分割为三个文件,分别为:
- 第1到2页为一个文件
- 第3到8页为一个文件
- 第9到最后一页为一个文件
核心代码:
```
public String splitFile(String pdfFile,Integer from,Integer end){
Document document = null;
PdfCopy copy = null;
try {
PdfReader reader = new PdfReader(pdfFile);
int n = reader.getNumberOfPages();
if(end==0){
end = n;
}
List<String> savepaths = new ArrayList<String>();
int a = pdfFile.lastIndexOf(".pdf");
String staticpath = pdfFile.substring(0, a);
String savepath = staticpath+ "_from_"+from+"_to_"+end+"_.pdf";
savepaths.add(savepath);
document = new Document(reader.getPageSize(1));
copy = new PdfCopy(document, new FileOutputStream(savepaths.get(0)));
document.open();
for(int j=from; j<=end; j++) {
document.newPage();
PdfImportedPage page = copy.getImportedPage(reader, j);
copy.addPage(page);
}
document.close();
return new File(savepath).getName();
} catch (IOException e) {
logger.error("split pdf file error:{}",e.getMessage(),e);
return null;
} catch(DocumentException e) {
logger.error("split pdf file error:{}",e.getMessage(),e);
return null;
}
}
```
在线pdf分割功能上线了。
戳这里试用
https://pdfmerge.online/pdfsplit/index.html
有了pdf合并功能还不够,总会遇到这种情况,下载了一本pdf文件,由于文件太大不方便阅读和传播。
那么按照章节进行分割是很正常的需求,
新上线的的pdf分割功能可以通过制定分割的页码进行分割,
比如制定第1,3,5,9页;
- 会分割为三个文件,分别为:
- 第1到2页为一个文件
- 第3到8页为一个文件
- 第9到最后一页为一个文件
核心代码:
```
public String splitFile(String pdfFile,Integer from,Integer end){
Document document = null;
PdfCopy copy = null;
try {
PdfReader reader = new PdfReader(pdfFile);
int n = reader.getNumberOfPages();
if(end==0){
end = n;
}
List<String> savepaths = new ArrayList<String>();
int a = pdfFile.lastIndexOf(".pdf");
String staticpath = pdfFile.substring(0, a);
String savepath = staticpath+ "_from_"+from+"_to_"+end+"_.pdf";
savepaths.add(savepath);
document = new Document(reader.getPageSize(1));
copy = new PdfCopy(document, new FileOutputStream(savepaths.get(0)));
document.open();
for(int j=from; j<=end; j++) {
document.newPage();
PdfImportedPage page = copy.getImportedPage(reader, j);
copy.addPage(page);
}
document.close();
return new File(savepath).getName();
} catch (IOException e) {
logger.error("split pdf file error:{}",e.getMessage(),e);
return null;
} catch(DocumentException e) {
logger.error("split pdf file error:{}",e.getMessage(),e);
return null;
}
}
```
推荐阅读
-
pdf在线合并上线啦 博客分类: java javapdf
-
java 使用itext分割pdf 博客分类: java javapdfitext
-
Keystore概念,Keytool工具使用 博客分类: Java JDKSecurity
-
Java boolean类型 Getter Setter 的使用和细节.md 博客分类: fastjson fastjsonjson取不到值转换为boolean为nullLinux
-
使用GZip来压缩传输量 博客分类: java web开发 javaGZip
-
服务器使用Gzip压缩JSON数据报“socket write error: Connection reset by peer.”错误 博客分类: java web开发 GzipJSONConnection reset by peer
-
服务器使用Gzip压缩数据,加快网络传输 博客分类: java web开发 javaGzip压缩数据
-
Java模版引擎velocity的使用 博客分类: velocity velocity
-
使用JSONObject生成json 博客分类: Java JSON
-
BigDecimal 使用方法详解 博客分类: Java