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.
我正在使用 WindowsFileSystem 类,并且正在尝试配置一些相对路径。它可以工作,但defaultDirectory字段设置为我的 apache tomcat bin 文件夹。如何更改此字段的配置?
你可以试试System.setProperty("user.dir", "d:\\dir");然后像这样的东西的相对路径new FileInputStream("1.txt");将从d:\\dir. 如果这就是你的意思。
System.setProperty("user.dir", "d:\\dir")
new FileInputStream("1.txt");
d:\\dir