今人不见古时月,今月曾经照古人
一个简单的读取properties文件的方法:
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class PropertiesUtils {
//需要传入一个key值,然后然后相对应的value值
public static String getSchema(String schemaName) {
String value = null;
try {
Properties properties = new Properties();
// 使用ClassLoader加载properties配置文件生成对应的输入流
InputStream in = PropertiesUtils.class.getClassLoader().getResourceAsStream("mybatis.properties");
// 使用properties对象加载输入流
properties.load(in);
//获取key对应的value值
value = properties.getProperty(schemaName);
} catch (IOException e) {
e.printStackTrace();
}
return value ;
}
}