我目前使用这种方法在我的应用程序中加载文件:
Path path = Paths.get(ClassLoader.class.getResource(fileName).toURI());
其中文件名的结构为“/package1/package2/folder/file.lol”。
是否有更好、更简单或更正确的方法来获取 Path 对象?我也需要在 JAR 中工作。
我目前使用这种方法在我的应用程序中加载文件:
Path path = Paths.get(ClassLoader.class.getResource(fileName).toURI());
其中文件名的结构为“/package1/package2/folder/file.lol”。
是否有更好、更简单或更正确的方法来获取 Path 对象?我也需要在 JAR 中工作。