How to get the file in a resource folder
In a Maven project, we may often struggle to get a certain file (e.g. json file or sql file). Here is how to place the resource file and use it in the java class.
1. If the main class is in folder src/main/java/, the resource file should be placed in the folder src/main/resources/
Suppose the main class is GeneralTest.class and the file to be used is under src/main/resources/stories/simple-upgrades/retry-upgrade-file.story
Then the java program should be as follows
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | import java.io.File; import java.net.URISyntaxException; import java.net.URL; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class GeneralTest { protected String getStoriesDirectoryWithinResources() { return "stories" + File.separator + "simple-upgrades" ; } protected List<String> storyPaths() { List<String> result = new ArrayList<String>(); String storiesDirectoryWithinResources = getStoriesDirectoryWithinResources(); URL resource = GeneralTest. class .getClassLoader().getResource(storiesDirectoryWithinResources); System.out.println(resource); try { File folder = new File(resource.toURI()); if (folder.exists() && folder.canRead() && folder.isDirectory()) { File files[] = folder.listFiles(); Arrays.sort(files); for (File file : files) { result.add(file.getPath().substring(folder.getPath().lastIndexOf(storiesDirectoryWithinResources))); } } } catch (URISyntaxException e) { e.printStackTrace(); } return result; } public static void main(String... args) { GeneralTest test = new GeneralTest(); System.out.println(test.storyPaths()); } } |
The output should be:
1 2 | file:/home/username/workplace/JavaMavenPractice/target/classes/stories/simple-upgrades [stories/simple-upgrades/retry-upgrade-file.story] |
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步