Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 FileInputStream 从 Ubuntu 中的 Java 打开一个文件。现在我的问题是,我怎样才能找到当前用户的路径/home/"currentuser"/myfile.xxx?通常我使用路径作为字符串,因为我知道当前用户。问候。
/home/"currentuser"/myfile.xxx
可以通过以下方式检索用户的主目录
String userHomeDir = System.getProperty("user.home");
请参阅系统属性