Can Java link to Windows API's? Regards, Casey
Hi Casey! Sure. Java provides an interface to do this exact task - it's called the Java Native Interface (JNI). The idea is that there are lots of applications out there that need to interface with native services (like Windows APIs). The result is that the Java authors have provided some Java binding support so that you can write a C function that takes a Java call and essentially turns it into a native call to another library. Do a google search for JNI and you'll probably find exactly what you're looking for. -c
Users browsing this forum: No registered users and 20 guest