vote up 1 vote down star

How can I get the username/login name in java ?

I tried:

try{
    		LoginContext lc = new LoginContext(appName,new TextCallbackHandler());
    		lc.login();
    		Subject subject = lc.getSubject();
    		Principal principals[] = (Principal[])subject.getPrincipals().toArray(new Principal[0]);
    		        for (int i=0; i<principals.length; i++) {
    		            if (principals[i] instanceof NTUserPrincipal
    		                  || principals[i] instanceof UnixPrincipal) {
    		                String loggedInUserName = principals[i].getName();
    		            }
    		        }

    	}catch (LoginException le){
    		System.out.println("LoginException: " + le.getMessage());
    	}catch(SecurityException se){
    		System.out.println("SecurityException: " + se.getMessage());
    	}

but I get a SecurityException. I'm new to all this, so I don't know whether I'm using the right stuff, but badly, or I'm going in the right direction.

Any hint will help.

flag

1  
I'm afraid to misunderstand you, but I don't understand your question. Which login username? Windows/GNU Linux login? Basic authentication on a webserver? – furtelwart Apr 28 at 12:26
It's impossible to understand anything when no details are posted – matt b Apr 28 at 12:35
Sorry guys. I'm new to Java and it's a bit hard to make sense now. – George Profenza Apr 28 at 13:01

2 Answers

vote up 7 vote down check
System.getProperty("user.name") ?
link|flag
+1 you can print the System.properties to get a lot of informations the VM is initialized with – Markus Lausberg Apr 28 at 12:15
Thanks! I come from Flash/actionscript...so I've got a looooooot to cover :) – George Profenza Apr 28 at 12:58
vote up -1 vote down

in Unix:

new com.sun.security.auth.module.UnixSystem().getUsername()

in Windows:

new com.sun.security.auth.module.NTSystem().getName()

in Solaris:

new com.sun.security.auth.module.SolarisSystem().getUsername()
link|flag
This code goes against Java's philosophy of write once, run anywhere (introduction of OS specific code), and secondly, it creates a dependency on Sun's implementation of Java. – Jin Kim May 19 at 16:28

Your Answer

Get an OpenID
or

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