您好我正在使用Java Web应用程序中的模块,我必须在远程PC上获取活动Windows用户的用户名,我使用了一些现有方法,例如:
System.getenv().get("USERNAME");
com.sun.security.auth.module.NTSystem nsys = new com.sun.security.auth.module.NTSystem(); nsys.getName();
request.getUserPrincipal();
System.getProperty("user.name")
但都提供了服务器的用户名。