Is it possible to access the Mac Address book API from pure Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T12:37:58Zhttp://stackoverflow.com/feeds/question/1059164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1059164/is-it-possible-to-access-the-mac-address-book-api-from-pure-java1Is it possible to access the Mac Address book API from pure Java?Fin2009-06-29T16:14:21Z2009-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 & Linux also (open source & 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#10592082Answer by notnoop for Is it possible to access the Mac Address book API from pure Java?notnoop2009-06-29T16:24:01Z2009-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>