1

问题是它发现关键字“dodge”创建了文件但没有写入文件。我之前遇到过这个问题,我冲洗然后关闭文件修复了它,但这次没有用。

WriteToFile(CurrentLine[ReturnWordsIndex("using")-1]);对底部错误说ArrayIndexOutOfBoundsException: -2我不知道​​为什么,因为永远不应该在位置-1找到“使用”。

import java.io.*;    
import javax.swing.JOptionPane;

public class InputLog {
    private BufferedReader CombatLog;
    private PrintWriter CharacterFile;
    private String[] CurrentLine;

    InputLog(){
        try{
            CombatLog = new BufferedReader(new FileReader("127401175162_chatlog.txt"));
            do{
                try{
                    CurrentLine = CombatLog.readLine().split(" ");
                }
                catch(IOException e){
                    JOptionPane.showMessageDialog(null, "Sorry cannot open UserSettings File");
                }
                DetermineType();
                }while(CombatLog.ready());
            CharacterFile.close();
        }
        catch(IOException e){
            JOptionPane.showMessageDialog(null, "Could not open next line of combatlog " + e);
        }
    }
    public void WriteToFile(String S){
        try{
            CharacterFile = new PrintWriter(new File(CurrentLine[3]));
        }
        catch(IOException e){
        JOptionPane.showMessageDialog(null, "Sorry can't write " + CurrentLine[3] +" To file");
        }
        CharacterFile.flush();
        CharacterFile.print(S+ " ");
    }

    public void WriteToFileLn(String S){
        try{
            CharacterFile = new PrintWriter(new File(CurrentLine[3]));
        }
        catch(IOException e){
            JOptionPane.showMessageDialog(null, "Sorry can't write " + CurrentLine[3] +" To file");
        }
        CharacterFile.flush();
        CharacterFile.println(S+ " ");
    }


    public int ReturnWordsIndex(String S){
        for(int i=0;i<CurrentLine.length;i++){
            if(CurrentLine[i].equals(S))
                return i;
        }
        return -1;
    }

    private void DetermineType(){
        for(String A: CurrentLine)
            if(A.equals("attacks")){
                JOptionPane.showMessageDialog(null, "found dodge");
                WriteToFile(CurrentLine[2]);
                WriteToFile(CurrentLine[ReturnWordsIndex("using")-1]);
                WriteToFile("(dodge).");
                WriteToFileLn(CurrentLine[ReturnWordsIndex("attacks")-1]);
            }
    }


    public static void main(String args[]){
        new InputLog();
    }
}

谢谢, 麦凯尔

编辑:我发现我只是在写一个字符串,创建一个新文件,然后写另一个字符。我怎么能不删除文件,只重写它?

4

3 回答 3

0

WriteToFile(CurrentLine[ReturnWordsIndex("using")-1]);导致一个,ArrayIndexOutOfBoundsException: -2因为没有找到“使用”这个词(所以ReturnWordsIndex("using")返回-1)。

CurrentLine您需要一个 if/then 语句,这样如果找不到该单词,您就不会尝试索引。

于 2010-12-05T19:09:58.773 回答
0

响应您的编辑,在WriteToFileandWriteToFileLn函数之外打开文件。

于 2010-12-05T23:15:22.900 回答
0

我怎么能不删除文件,只重写它?

我假设您的意思是附加到它。(你目前正在做的是重写它。)

如果是这样,只需使用FileWriter(file, true)创建一个Writer将在文件的当前末尾开始写入的文件;例如

CharacterFile = new PrintWriter(new FileWriter(new File(CurrentLine[3])));

注意:Java 变量或方法名称以大写字母开头是不好的风格。

于 2010-12-05T23:32:23.507 回答