0
我有一個具有以下結構(部分)的Web應用程序。以正確的方式讀取src/main/resources中的文件作爲Web應用程序中的字符串?
Project Name
src/main/java
com.package
MainFile.java
src/main/resources
sample.xml
現在我想從MainFile.java讀取sample.xml作爲字符串。
我試圖用這種方法,但得到了NoSuchFileException
byte[] encoded = Files.readAllBytes(Paths.get("src/main/resources/sample.xml"));
return new String(encoded, StandardCharsets.UTF_8);
請提出一個解決這個問題。