maven工程中读取resources中的资源文件
作者:听海边涛声
Web项目中应该经常有这样的需求,在maven项目的resources目录下放一些文件,比如一些配置文件,资源文件等,本文主要介绍了maven工程中读取resources中的资源文件,具有一定的参考价值,感兴趣的可以了解一下
maven工程的代码布局如下:在resources下面有一个资源文件test.properties,现在的目标要在Java代码中读取该资源文件中的内容。
test.properties资源文件的内容如下:
Java代码如下:
package com.thb; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; import java.util.Properties; import java.util.Map.Entry; public class Demo { public static void main(String[] args) { String fileName = "/test.properties"; URL url = Demo.class.getResource(fileName); String path = url.getPath(); try { BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(path))); Properties pro = new Properties(); pro.load(in); for (Entry<Object, Object>entry : pro.entrySet()) { System.out.println(entry.getKey() + "=" + entry.getValue()); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }
1)在cmd下运行mvn compile
进行编译:
2)运行mvn exec:java -Dexec.mainClass=com.thb.Demo
执行:
从输出可以看出,得到了正确的结果。
到此这篇关于maven工程中读取resources中的资源文件的文章就介绍到这了,更多相关maven读取resources资源文件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!