如何在Grails中找到任意用户的主目录?在Linux上,通常是/ home / user。但是,在某些操作系统上,例如OpenSolaris,路径为/ export / home / user。
对于类似UNIX的系统,您可能希望echo ~username使用shell 执行“ ”(因此可使用Runtime.exec()运行{"/bin/sh", "-c", "echo ~username"})。
echo ~username
Runtime.exec()
{"/bin/sh", "-c", "echo ~username"}