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

I want to make a Java program that allow me this discover my nearby computers who is running the same problem. Which is similar like the iTunes, can discover nearby computer who enable sharing in the iTunes. How can I implement it using open source library? Also, cross platform is very important. Any ideas on that? Thank you.

share|improve this question

5 Answers

up vote 1 down vote accepted

I think you definitely should take a look at UPnP. Considering the cross-platformness of such a solution, and its implementation using Java, you can consider

Finally, considering existing implementation of Bonjour using Java, this reply to a stackoverflow question sums it up.

share|improve this answer
If anyone have actual experiences with these solutions, I'd like to hear them. – Thorbjørn Ravn Andersen Aug 11 '11 at 7:54

jmdns is a full Bonjour/Zeroconf implementation written in Java compatible with Apple. There is no dependency on native libraries, it is 100% Java.

http://jmdns.sourceforge.net/

share|improve this answer

Well, Bonjour itself is open source, so you might want to start there...

http://developer.apple.com/opensource/

share|improve this answer
But I would like to use it on Linux too... So, I need to port that on Linux? – Tattat Nov 2 '10 at 16:08
According to wikipedia, the Apple implementation is available for Linux too en.wikipedia.org/wiki/… – David Gelhar Nov 2 '10 at 16:12
On Linux Avahi is a very nice implementaiton. Installed by default on Ubuntu. – Thorbjørn Ravn Andersen Apr 29 '11 at 5:59

You can use Avahi - an open-source implementation for zeroconf, which is the protocol used by iTunes. There's a nice list of options for Java at:

http://elliotth.blogspot.com/2009/03/registering-service-with-dns-sd-from.html

share|improve this answer

I don't know how far it ever got, but Java had the JXTA project, it might do what you want.

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.