I want to receive a List as input, Java is showing me no error in:

List<String> A;
 ObjectOutputStream ins = new ObjectOutputStream(soc.getOutputStream());
  ins.writeObject(A);

The above code executes without error, however this doesn't:

List<String> ls;
    ObjectInputStream in = new ObjectInputStream(soc.getInputStream());
       in.readObject(ls);

If I can send a List<>, why cant I accept it? Any reasons and suggestions for the output code?

link|improve this question

75% accept rate
2  
Show the stacktrace. – Renato Feb 2 at 19:10
Compiler Error. Expected Object got List<String>! – Purushottam Feb 2 at 19:15
@Purushottam: Seems like you got a method signature wrong. Which IDE are you using? – thkala Feb 2 at 19:25
feedback

2 Answers

up vote 7 down vote accepted

readObject doesn't take any parameters. You want:

List<String> list = (List<String>) in.readObject();

(Of course, this isn't really type-safe, and the compiler should at least raise warnings. How you deal with that is a separate matter.)

link|improve this answer
feedback

There is no readObject method with input parameter.

You need to cast the readObject to type of the object you are trying to read.

List ls=  (List)in.readObject();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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