Reputation: 1712
I need to code Java server and client using the local sockets. I know how to do this in C. I found many examples on internet with code examples how to write Network Java server and client but I can't find a good example only with local sockets. Is there any good example?
Best Wishes
Upvotes: 0
Views: 1064
Reputation: 1930
Do you mean Unix Domain sockets?
https://github.com/mcfunley/juds is one option.
Upvotes: 1
Reputation: 7305
http://docs.oracle.com/javase/tutorial/networking/sockets/readingWriting.html seems to be a good one.
Upvotes: 2