posted 25 years ago
It sounds like the Java technology you need is Java Native Methods. This technology allows you to access the native Windows API functions. So assuming you understood this technology and also understand the appropriate Windows API calls and some C/C++ programming, you should be able to pull this off.
I would start off by identifying the appropriate Windows API functions relating to NT security. I would test these APIs using C/C++ to make sure you can access the data you need. Then I would read Chapter 11 in Horstmann's Core Java Volume 2 to learn Java Native Methods. Then I would put everything together, accessing the Windows API via Java. What you want to do should be doable, but not trivial, depending on your background.