Answers for "spring boot add file to classpath"

1

load a file from classpath spring boot

public void testResourceFile() throws IOException {
		File resource = new ClassPathResource("test.json").getFile();
		String text = new String(Files.readAllBytes(resource.toPath()));
	}
Posted by: Guest on June-19-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language