标签:style blog class java ext get string 2014 文件 http 404
例如我们要获取我们项目类路径下的image-manager.properties
java代码如下
import org.apache.tools.ant.taskdefs.LoadProperties;
protected String readConfig() throws FileNotFoundException, IOException {
InputStream in = LoadProperties.class.getClassLoader()
.getResourceAsStream("image-manager.properties");
Properties properties = new Properties();
properties.load(in);
String sourcePath = properties.getProperty("root"); //properites文件中的键的名字。 返回的是该键对应得分值!
return sourcePath;
}
获取我们自己项目中类路径下的文件,码迷,mamicode.com
标签:style blog class java ext get string 2014 文件 http 404
原文地址:http://blog.csdn.net/baicp3/article/details/24799417