Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. PDFMergerUtility pm = new PDFMergerUtility();
  2. File file = new File(filePath);
  3. pm.addSource(file);
  4.  
  5. //Aufteilen, wenn es Farbe oder SchwarzWeiß ist
  6. if(filePath.contains("FARBE")) {
  7. pm.setDestinationFileName(destinationFileName);
  8. } else if(filePath.contains("BNW")) {
  9. pm.setDestinationFileName(destinationFileName);
  10. }
  11.  
  12. //speichern
  13. pm.mergeDocuments(null);
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement