Is there a winsock equivelant in Java? Can someone point me in the right direction?
Thanks :)
Printable View
Is there a winsock equivelant in Java? Can someone point me in the right direction?
Thanks :)
Im not to familiar with MS stuff but i think the classes Socket and ServerSocket are what you need. They are in the java.net package. There are some other classes in there like URL and InetAddress that come in handy also.
Thanks, I'll look around for them :)
I have used the Socket class to connect to C and VB servers that I also wrote. I have only used DataInputStream and DataOutputStream. I can point you to a Java network programming resource, if that would help.
If you would be so kind :)Quote:
Originally Posted by ccoder
Thanks