gpt4 book ai didi

java - 有没有办法使用java在Linux机器上获取用户的UID?

转载 作者:IT王子 更新时间:2023-10-29 00:05:01 26 4
gpt4 key购买 nike

有没有办法使用 Java 在 Linux 机器上获取用户的 UID?我知道 System.getProperty("user.name"); 方法,但它返回用户名,我正在寻找 UID。

最佳答案

你可以执行id命令并读取结果。

例如:

$ id -u jigar

输出:

1000

你可以通过以下方式执行命令

try {
String userName = System.getProperty("user.name");
String command = "id -u "+userName;
Process child = Runtime.getRuntime().exec(command);

// Get the input stream and read from it
InputStream in = child.getInputStream();
int c;
while ((c = in.read()) != -1) {
process((char)c);
}
in.close();
} catch (IOException e) {
}

source

关于java - 有没有办法使用java在Linux机器上获取用户的UID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4796172/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com