puedes ejecutar id
Comando y lee el resultado.
por ejemplo:
$ id -u jigar
salida:
1000
puede ejecutar el comando por
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) {
}
fuente
En realidad, hay una API para esto. No hay necesidad de llamar a un comando de shell o usar JNI, solo
def uid = new com.sun.security.auth.module.UnixSystem().getUid()
Si puede influir en cómo se inicia la VM de Java, podría entregar el uid como propiedad de usuario:
java -Duserid=$(id -u) CoolApp
En tu CoolApp, puedes simplemente buscar la ID con:
System.getProperty("userid");
Saludos,
Martín.