Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's the code I'm using:

public class Ser implements Serializable {
int x,y;
String name;
public Ser(int a, int b, String c) {
    x=a;
    y=b;
    name = c;
  }
}

import java.io.*;

public class testSer {
public static void main(String[] args) {
    FileOutputStream testStream = new FileOutputStream("serText.ser");
    ObjectOutputStream testOS = new ObjectOutputStream(testStream);
    Ser objTest = new Ser(1,2, "Nikhil");
    testOS.writeObject(objTest);
    testOS.close();
  }
}

Here are the errors I'm receiving:

Errors

I've created the *.ser file manually in the folder(although the book says compiler automatically creates one) but the problem still persists.

RELP!

share|improve this question

3 Answers

up vote 3 down vote accepted

You're not dealing with IOException. You need to either catch it or throw it explicitly.

try{
  // Your code
}catch(IOException e){
  // Deal with IOException
}

or

public static void main(String[] args) throws IOException{
  // Your code
}

This is all a consequence of Java having checked exceptions, of which IOException is one.

For your purposes, the second is probably fine since an IO failure can't really be recovered from. In larger programs, you'll almost certainly want to recover from transient IO failures and thus the first would be more appropriate.

share|improve this answer

You need to somehow deal with IOException, either catching it or throwing from main. For a simple program, throwing is probably fine:

public static void main(String[] args) throws IOException
share|improve this answer
1  
To be specific put a try/catch around the code or indicate that main throws IOException. You should do development in an IDE (such as Eclipse (which is free)). The benefit of this is that an IDE will give you warnings/errors and offer solutions to problems such as this. – Syntax Jul 13 '10 at 10:49
It worked, But why I need to throw an exception if I've already created the file? – MoonStruckHorrors Jul 13 '10 at 10:59
2  
You're saying your program can throw an exception. Most of the time it won't, but there are all sorts of possible IO errors. For instance, imagine if you ran out of disk space. – Matthew Flaschen Jul 13 '10 at 11:41

You need to use a try/catch block, handling exceptions that are declared as thrown in the methods you are using. It would be worthwhile to read up on exception handling.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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