Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8038761
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T03:20:35+00:00 2026-06-05T03:20:35+00:00

At a certain moment in my program I’m creating a pdf File with iText.

  • 0

At a certain moment in my program I’m creating a pdf File with iText. This File is created so people can see it an also added to my database. It works just fine in Eclipse but when I make a runnable jar it doesn’t work. The file is not created and not added to the database. I have no idea why it’s not working in a jar.

        PdfWriter writer = PdfWriter.getInstance(document,
                new FileOutputStream(documentName.getName() + ".pdf"));

///////

        File file = new File(document.getName() + ".pdf");

Any suggestions anyone? thx all

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T03:20:38+00:00Added an answer on June 5, 2026 at 3:20 am

    Just try to do this:

    PdfWriter writer = PdfWriter.getInstance(document,
                    new FileOutputStream("C:\\some_file.pdf"));
    

    and check whether file exists on c drive as some_file. I believe it will. Additionally, I do not know what kind of object is document, but maybe it contains method that returns absolute path.

    Edit:
    If you use that file again in one program I would do this different:

    File file = new File(document.getName() + ".pdf");
    PdfWriter writer = PdfWriter.getInstance(document,
                    new FileOutputStream(file));
    

    or even

    String path = "some/safe/path/maybe/provided/by/user"; // in settings or sth
    File file = new File(path+document.getName() + ".pdf");
    PdfWriter writer = PdfWriter.getInstance(document,
                    new FileOutputStream(file));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a program that decrypts whats stored in a export file from
I am developing a program that I want to share with certain people, however
On certain programs you can run them on a demo period for say 'ten
In certain text editors, like E, I can select multiple locations and, as I
For certain types of sql queries, an auxiliary table of numbers can be very
I have a node.js server written in express and at a certain moment I
I'am trying to follow an ASP.NET with AJAX Training. At certain moment, they deploy
At this moment there is a very basic flash project that connects to a
I need to validate that certain variables can create a valid datetime and if
I'm creating a program counter that is supposed to use only unsigned numbers. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.