// fileName contains path with filename

File file =  new File(fileName);
FileInputStream fis = new FileInputStream(file);

  parser = new PDFParser(fis);      //  problem here


this code working fine in the eclipse mode

after creating .jar is not working

please suggest me



On Wed, May 16, 2012 at 4:14 PM, Mallesh SGowda <[email protected]>wrote:

> // fileName contains path with filename
>
> File file =  new File(fileName);
>
>   parser = new PDFParser(new FileInputStream(file));      //  problem here
>
>
>  this code working fine in the eclipse mode
>
> after creating .jar is not working
>
> any one suggest me
>
>
>
>
>

Reply via email to