basically, I am trying to generate a log file in Robocode, but I am having issues as you cannot use try/catch in Robocode (as far as I am aware). I have done the following:-

public void onBattleEnded(BattleEndedEvent e) throws IOException
{
    writeToLog();   
    throw new IOException();
}

and

public void writeToLog() throws IOException
{
    //Create a new RobocodeFileWriter.      
    RobocodeFileWriter fileWriter = new RobocodeFileWriter("./logs/test.txt");
    for (String line : outputLog)
    {
        fileWriter.write(line);
        fileWriter.write(System.getProperty("line.seperator"));
    }       
    throw new IOException();
}

and am getting the following error at compile time:-

MyRobot.java:123: onBattleEnded(robocode.BattleEndedEvent) in ma001jh.MyRobot cannot implement onBattleEnded(robocode.BattleEndedEvent) in robocode.robotinterfaces.IBasicEvents2; overridden method does not throw java.io.IOException public void onBattleEnded(BattleEndedEvent e) throws IOException ^ 1 error

Any help would be so greatly appreciated, this is driving me up the wall, I am sure it is something simple.

link|improve this question

I would like to see the interface too. Have you imported java.io.IOException only and not something else? – adarshr Mar 5 '11 at 14:15
Yeah, I have imported that only. – VisionIncision Mar 5 '11 at 14:21
feedback

2 Answers

up vote 0 down vote accepted

As you can see here, the interface doesn't declare any checked exceptions. So you can't throw one in your implementing class.

One way to solve this would be to implement your method like this:

public void onBattleEnded(BattleEndedEvent e)
{
    writeToLog();   
    throw new RuntimeException(new IOException());
}

public void writeToLog()
{
    //Create a new RobocodeFileWriter.      
    RobocodeFileWriter fileWriter = new RobocodeFileWriter("./logs/test.txt");
    for (String line : outputLog)
    {
        fileWriter.write(line);
        fileWriter.write(System.getProperty("line.seperator"));
    }       
    throw new new RuntimeException(new IOException());
}
link|improve this answer
See therein is the problem; if I take it away, the compiler then gives an error saying basically that the Exception must be caught or declared. – VisionIncision Mar 5 '11 at 14:22
Then declare as throws RuntimeException – adarshr Mar 5 '11 at 14:23
Thanks, as you can probably tell I am relatively new to Java, and very new to Exception Handling. Anyway, so I declared as throws RuntimeException, and the compiler still wants me to catch or declare the IOException. I tried to use throw new RuntimeException, but that wouldn't work. Thanks. – VisionIncision Mar 5 '11 at 14:39
Can you please show me the contents of the interface? I feel I'm missing something important. – adarshr Mar 5 '11 at 14:40
Sorry, what exactly do you mean by that. Sorry, I am new to this whole Java thing. Thanks. – VisionIncision Mar 5 '11 at 14:50
show 3 more comments
feedback

but I am having issues as you cannot use try/catch in Robocode (as far as I am aware)

Where did this assumption came from? I just because of your question here installed robocode (so it's your fault if I'll answer here less often in future), wrote my own robot and it can catch exceptions quite good:

try {
   int i = 1/0;
}
catch(ArithmeticException ex) {
   ex.printStackTrace();
}

And why are you throwing IOExceptions in your example?

link|improve this answer
Yeah, sorry I got a little confused with the limits robocode places with regards to exception handling. I tried that as part of a trial/error scenario. I am after all a new CS student, mistakes have to be made. – VisionIncision Mar 13 '11 at 15:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.