为什么捕获块不会运行?

时间:2012-06-09 13:40:27

标签: java

我有以下方法将数组写入文本文件。如果给出了现有的文本文件,那么它可以正常工作,但如果给出了不存在的文件,则try-catch将运行代码以重新启动该方法。我没有给出任何错误或任何错误,但catch块不会运行。我不认为我需要捕获IOException,但如果我不这样做,代码甚至不会运行。所以,是的,谁知道我怎么能让这个工作?

编辑:忘记提及getInput方法提示用户输入。

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);
  }
}

3 个答案:

答案 0 :(得分:2)

如果文件不存在,则无法写入,在catch块中,您尝试将错误写入不存在的文件。另外,我认为你在这里只需要一个catch块,并注意其中一个if语句块是空的。

试试这个:

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)
{
   System.err.println(e1.getMessage());
}   
catch (IOException e)
{
   System.err.println(e.getMessage());
}

答案 1 :(得分:0)

尝试此版本并在获得异常时发送堆栈跟踪:

public static List<String> splitByLength(String filename, int length) {
    List<String> splitWords = new ArrayList<String>();

    for (int i = 0; i < str.length(); i += length) {
        splitWords
                .add(str.substring(i, Math.min(str.length(), i + length)));
    }
    return splitWords;
}

private static void openFileWriter(String prompt, boolean append,
        int wordsperline, String[] story) {
    PrintWriter save = null;
    try {
        save = new PrintWriter(new FileWriter("c:\\test.txt", append));
        wordsperline = 0;
        save.println("");
        save.println("");
        save.println("Story start");
        for (int x = 0; x <= story.length - 1; x++) {
            if (story[x] != null) {
                List<String> splitWords = splitByLength(story[x], 21);
                for (String line : splitWords) {
                    save.println(line);
                }
            }
        }

    } catch (IOException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        if (save != null) {
            save.close();
        }
    }
}

答案 2 :(得分:0)

请参阅FileWriter javadoc

引自构造函数doc:

  

抛出:       IOException - 如果指定的文件存在但是是目录而不是常规文件,则不存在但无法创建,或者由于任何其他原因无法打开

如果您传递的文件名不存在,但在您有权写入的位置是合法文件名,则只需创建该文件。

如果您将代码传递给目录,您的代码确实会到达catch块(有点奇怪的是,它在这种情况下为我捕获FileNotFoundException而不是记录在案的IOException。)

要检查文件是否存在,请参阅File javadoc