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

I am feeling really stupid right now guys.... basically I am connecting over TCP on a local machine... and when I try to make the In/out streams at the client it wont get passed creating the object input stream. What gives? This stops after printing 2... no exceptions or anything... This isn't the first time I've used this class which is partialy why I am puzzled.

try {
            System.out.println("1");
            mySocket = new Socket("localhost", 11311);
            System.out.println("12");
            oos = new ObjectOutputStream(mySocket.getOutputStream());
            System.out.println("2");
            ois = new ObjectInputStream(mySocket.getInputStream());
            System.out.println("13");

        } catch (Exception e) {
            e.printStackTrace();
        }
share|improve this question
Is the server sending the object? It seems as the server does not send anything. – MasterCassim Oct 1 '11 at 19:21
ObjectInputStream probably waits for a stream header to be received. – NiematojakTomasz Oct 1 '11 at 19:27
I am not following... the server accepts the TCP connection. I thought to read you would go ois.readObject()? I have it set up so the client sends the first object... I just wanted to create the streams. – Michael Oct 1 '11 at 19:29

1 Answer

up vote 2 down vote accepted

From the specification of ObjectInputStream:

This constructor will block until the corresponding ObjectOutputStream has written and flushed the header.

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.