03-01-2004, 09:31 PM | #1 (permalink) |
Crazy
Location: Raleigh, NC
|
java socket programming question
I am trying to write a simple server and client in java to send text back and forth. The way it is written now, My client must wait for a response message each time it sends one before it can send another. Is there a way to check the input stream and if there is no data then move on? Right now it just sits and waits for new data when I try to check for it.
Thanks
__________________
"Good artists copy, great artists steal." - Pablo Picasso |
03-02-2004, 07:26 PM | #4 (permalink) |
Upright
|
No, but it may be in the future. I took a relatively simple java class last term and I may need to write some java apps for my senior project in a few terms.
Actually I just want to write a standalone application that can communicate over a network or tcp/ip. :-) |
03-02-2004, 08:40 PM | #5 (permalink) |
Crazy
Location: Raleigh, NC
|
Well, it turns out I can get away with going back and forth since the client and server are both console based, meaning that the client just send a message and then exits. As far as the asynchronise communication, I think it would be fine just to use 2 sockets on each end, one for send and one for receive. There are some kind of non-blocking java classes, but I have never used them.
__________________
"Good artists copy, great artists steal." - Pablo Picasso |
03-03-2004, 03:21 AM | #6 (permalink) |
Crazy
Location: Belgium
|
As always, if it's Java-related, first thing to check is:
java.sun.com It has a great socket/server related tutorial with a "knock, knock, who's there?" joke server - client example (text based). Worth a read: http://java.sun.com/docs/books/tutor...ets/index.html have fun!
__________________
Amerika by Franz Kafka “As Karl Rossman, a poor boy of sixteen who had been packed off to America by his parents because a servant girl had seduced him and got herself a child by him, stood on the liner slowly entering the harbour of New York, a sudden burst of sunshine seemed to illumine the Statue of Liberty, so that he saw it in a new light, although he had sighted it long before. The arm with the sword rose up as if newly stretched aloft, and round the figure blew the free winds of heaven.” |
03-13-2004, 05:17 PM | #9 (permalink) |
Crazy
Location: Raleigh, NC
|
Actually, when you set a timeout, and the socket doesn't get any response, it says it will throw an error. Is this a good way to deal with the problem? I had thought that I would need 2 pairs of sockets, one for send and one for receive.
__________________
"Good artists copy, great artists steal." - Pablo Picasso |
03-14-2004, 03:02 AM | #10 (permalink) |
Once upon a time...
|
There is a method for checking if a stream is empty, check the API.
However, it might be simpler to write a listening class and a sending class and multi-thread each side. Have a look at the examples under Knock Knock.
__________________
-- Man Alone ======= Abstainer: a weak person who yields to the temptation of denying himself a pleasure. Ambrose Bierce, The Devil's Dictionary. |
03-26-2004, 12:13 AM | #11 (permalink) |
Upright
|
checking if the stream is empty is hugely processor-intensive...itll run every available clock cycle if you give it a chance. using sotimeout throws a special timeout error that you can catch and ignore. writing a listening thread and a sending thread works as well.
|
Tags |
java, programming, question, socket |
|
|