import java.io.FileReader;
import java.io.InputStream;
import java.util.Properties;
/*
*/
public class Reflect {
public static void main(String[] args) throws Exception{
//获取一个文件的绝对路径!!!
// 这种是先获得绝对路径然后在转换成流。
// String path = Thread.currentThread().getContextClassLoader()
// .getResource("classinfo2.properties").getPath();
// FileReader reader = new FileReader(path);
//下面这种是直接用流的方式返回。
InputStream reader = Thread.currentThread().getContextClassLoader()
.getResourceAsStream("classinfo2.properties");
Properties pro = new Properties();
pro.load(reader);
reader.close();
//通过key获取value。
String className = pro.getProperty("className");
System.out.println(className);
}
}
java以流的方式直接返回
最新推荐文章于 2024-01-05 13:36:05 发布