> Steve Carr <[email protected]> hat am 26. Juni 2017 um 11:41 
> geschrieben:
> 
> 
>   import java.io.IOException;
> import org.apache.pdfbox.exceptions.COSVisitorException;
> import org.apache.pdfbox.pdmodel.PDDocument;
> import org.apache.pdfbox.pdmodel.PDPage;
> 
> /**
>  *
>  * @author Azeem
>  * @Email [email protected]
>  */
> 
> 
> When I compile the following code in netbeans I get
>  Uncompilable source code - package org.apache.pdfbox.exceptions does not 
> exist in relation tocatch(IOException | COSVisitorException e)
> 
> I downloaded pdfbox-1.6.0-src.zip
Please, update to a more recent version like 2.0.6, yours is quite ancient.

Andreas

> help
> steve
> public class Main {
> 
> 
>     public static void main(String[] args) {
>         
>         System.out.println("Create Simple PDF file with blank Page");
>         
>         String fileName = "EmptyPdf.pdf"; // name of our file
>         
>         try{
>         
>         PDDocument doc = new PDDocument(); // creating instance of pdfDoc
>         
>         doc.addPage(new PDPage()); // adding page in pdf doc file
>         
>         doc.save(fileName); // saving as pdf file with name perm 
>         
>         doc.close(); // cleaning memory 
>         
>         System.out.println("your file created in : "+ 
> System.getProperty("user.dir"));
>         
>         
>         }
>         catch(IOException | COSVisitorException e){
>         System.out.println(e.getMessage());
>         }
>         
>     }
>     
> }

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to