Is it possible to access the Mac Address book API from pure Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T12:37:58Z http://stackoverflow.com/feeds/question/1059164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1059164/is-it-possible-to-access-the-mac-address-book-api-from-pure-java 1 Is it possible to access the Mac Address book API from pure Java? Fin 2009-06-29T16:14:21Z 2009-08-06T21:36:21Z <p>Just wondering if it is possible to access the Mac OS X Address Book API's from pure Java 6 code? I want to keep this completely platform independent as my program is built for Windows &amp; Linux also (open source &amp; free: <a href="http://jsmsirl.sourceforge.net/" rel="nofollow">http://jsmsirl.sourceforge.net/</a>).</p> <p>Any help is much appreciated!</p> http://stackoverflow.com/questions/1059164/is-it-possible-to-access-the-mac-address-book-api-from-pure-java/1059208#1059208 2 Answer by notnoop for Is it possible to access the Mac Address book API from pure Java? notnoop 2009-06-29T16:24:01Z 2009-06-29T16:24:01Z <p>There is no way, as far as I know. Apple has a guide for accessing the address book through JNI though, which is available <a href="http://developer.apple.com/java/jniuniversal.html" rel="nofollow">here</a>. The sample code for MyFirstJNIProject is available <a href="http://developer.apple.com/samplecode/MyFirstJNIProject/index.html" rel="nofollow">here</a>.</p> <p>The guide also shows how to check the underlying operating system and only call the JNI code when running on Mac OS X platforms.</p>