Java get windows Username

In this section, you will learn how to obtain the window's username. We are
providing you an example which will obtain the window's username by using the System.getProperty(). This will provide all the properties of the windows.
System.getProperty("user.name")- This method retrieve the username
of the particular system from all the properties of Windows.
Here is the code of GetWindowUsername.java
public class GetWindowUsername {
public static final void main( String args[] ) {
String userName = System.getProperty("user.name");
System.out.println("Window's Username: "+userName);
}
}
|
Output will be displayed as:

Download Source Code

|