我是Java的新手,有人请让我知道如何获取文件的资源路径而不是使用整个路径。以下是我的代码。
Path file = Paths.get("/home/Documents/src/test/resources/files/sample.txt");
我需要像getResource这样的东西(" files / sample.txt")。
答案 0 :(得分:2)
你需要这个:
URI uri = getClass().getClassLoader().getResource("/files/sample.txt").toURI();
Path path = Paths.get(uri);
答案 1 :(得分:0)