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 8051567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T07:19:49+00:00 2026-06-05T07:19:49+00:00

I have the following method to write an array to a text file. If

  • 0

I have the following method to write an array to a text file. If a existing text file is given then it works fine but if a file that doesn’t exist is given neither try-catch will run the code to restart the method. I’m not given any error or anything but the catch block won’t run. I didn’t think i would need to catch for an IOException but the code won’t even run if i don’t do that. So yea, anyone know how i can get this to work?

Edit: Forgot to mention the getInput method prompts the user for input.

private static void openFileWriter(String prompt, boolean append, int wordsperline, String[] story) {
  try {
    try {
      save = new PrintWriter(new FileWriter(getInput(prompt), append));
      wordsperline = 0;
      save.println("");
      save.println("");
      save.println("Story start");
      for (int x = 0; x <= story.length-1; x++) {
        if (story[x] == null) {
        } else {
          if (wordsperline == 21) {
           save.println(story[x]);
           wordsperline = 0;
          } else {
           save.print(story[x]);
           wordsperline++;
          }
        }
      }
      save.close();
    } catch (FileNotFoundException e1) {
    openFileWriter("File not found", append,wordsperline,story);
    } 
  } catch (IOException e) {
    // TODO Auto-generated catch block
    openFileWriter("File not found", append,wordsperline,story);
  }
}
  • 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-05T07:19:50+00:00Added an answer on June 5, 2026 at 7:19 am

    See FileWriter javadoc.

    Quoting from the constructor doc:

    Throws:
    IOException – if the named file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason

    If you pass it a filename that doesn’t exist, but is a legal filename in a location where you have permission to write, it simply creates the file.

    Your code in fact does reach the catch blocks if you pass it a directory (somewhat oddly, it catches a FileNotFoundException in this situation for me rather than the documented IOException).

    To check if a file exists, see File javadoc

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following method that works fine. However, I think it is ugly.
I have the following method that is replacing a pound sign from the file
I have the following method that is supposed to be a generic Save to
I want to write a method that when supplied an array of ints will
I have to text file in the following format : Word [tab][tab] Word [Carriage
I have to write a program that read from a file that contains the
I have the following weird requirement. I am given: A list of some method
i have the following method in a usercontrol protected override void Render(HtmlTextWriter writer) {
I have following method in wcf webenabled service Public Person AddPerson(Person p); As of
I have following method which I am using to load ActiveX control dynamically, Dim

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.