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.
我System.getProperty("user.dir") 用来获取我的 CWD。然后我修剪最后一个 \token 给我父目录。
System.getProperty("user.dir")
我的问题是,有没有更简单的方法呢?我想要当前的工作目录, cd向上一级,然后钻入另一个项目中的子文件夹。
cd
我在其中运行单元测试,\\projectA\test 但我想获取同一级别项目中包含的另一个文件夹的路径。即文件夹\\projectB\otherTestData
\\projectA\test
\\projectB\otherTestData
File类中的检查getparent和getParentFile方法。
getparent
getParentFile
有关更多详细信息,请参见此处