How to get Windows username in Java?

前端 未结 4 1794
别跟我提以往
别跟我提以往 2020-11-27 05:49

So what I am trying to do is let my Java find the user\'s name that windows is logged in with, so when I would say such a method, it would return the users name, like I use

4条回答
  •  广开言路
    2020-11-27 06:30

    Two ways

    1. System.getProperty("user.name");

    2. System.getenv("USERNAME");

    Both are good for any OS

提交回复
热议问题