vote up 3 vote down star
1

I see many similar questions, however I want to find the Username of the currently logged in user using Java.

Its probably something like:

System.getProperty(current.user);

But, I'm not quite sure.

flag

2 Answers

vote up 10 vote down check

You're actually really close. This is what you're looking for:

System.getProperty("user.name")
link|flag
vote up 1 vote down

The commonly available system properties are documented in the System.getProperties() method.

As Chris said "user.name" is the property to get the user running your app.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.