Possible to read user's Windows logon security information into my program?

I like to write a reservation program for serial number booking, and I was wondering if it is possible to record user information based on their Windows logon?
[166 byte] By [newtosdna] at [2007-11-27 3:51:15]
# 1
String userid = System.getProperty("user.name");That gives you the user ID which is currently signed on to the computer where the code is running. That may or may not help depending on the architecture of your application.
DrClapa at 2007-7-12 8:55:13 > top of Java-index,Java Essentials,Java Programming...
# 2
Is it internal? NTLM based authentication? ... something else?Are you talking about using a home user's login as a unique key for something?
xiarcela at 2007-7-12 8:55:13 > top of Java-index,Java Essentials,Java Programming...