0

我有以下方法将数组写入文本文件。如果给出了现有的文本文件,那么它可以正常工作,但如果给出不存在的文件,则 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);
  }
}
4

3 回答 3

2

如果文件不存在,则无法写入,在您的 catch 块中,您试图将错误写入不存在的文件。另外,我认为您在这里只需要 1 个 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());
}
于 2012-06-09T13:45:05.433 回答
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();
        }
    }
}
于 2012-06-09T14:04:53.283 回答
0

请参阅FileWriterjavadoc

引用构造函数文档:

抛出:IOException - 如果指定文件存在但为目录而非常规文件、不存在但无法创建或因任何其他原因无法打开

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

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

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

于 2012-06-09T14:58:33.627 回答