In Java5, is there a way to get the full name of the user that is running the application using only JDK APIs? (I know about JAAS and third-party libraries, but they might not be installed on the target system).
I know about System.getProperty("user.name") but that returns the user ID not user NAME.