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.
我已经为此苦苦挣扎了很长时间。
我正在使用外部 API,我需要直接传递文件的路径。我无法修改它。
我看起来像:函数方法(字符串路径);
所以我不能使用资源,因为我只需要传递路径。
春天可以吗?
也许你可以使用:
(new File("")).getAbsolutePath()为您提供当前路径(应用程序)。
(new File("")).getAbsolutePath()
或(我认为这个更适合你)
getResource("fileName").getFile()