然后去API查下File的方法吧,比如:file.isHidden()测试此抽象路径名指定的文件是否是一个隐藏文件。
private static String driver =nullprivate static String url = null
private static String user = null
private static String password = null
private static BasicDataSource ds
static{
//读取程序外的.properties 文件
//需要.properties文件的包路径
Properties props = new Properties()
try {
String path ="db.properties"
props.load(
DBUtils.class.getResourceAsStream(path)
)
//properties对象.getProperty("字符串")
driver=props.getProperty("driver")
url=props.getProperty("url")
user=props.getProperty("user")
password=props.getProperty("password")
ds = new BasicDataSource()
ds.setDriverClassName(driver)
ds.setUrl(url)
ds.setUsername(user)
ds.setPassword(password)
Class.forName(driver)
} catch (Exception e) {
e.printStackTrace()
}
}
这是一个JDBC读取配置文件连接数据库的示例代码,供参考!
1、通过spring配置properties文件[java]
<bean id="propertyConfigurer"
class="com.tjsoft.base.util.CustomizedPropertyPlaceholderConfigurer">
/WEB-INF/config/jdbc.properties
/WEB-INF/config/mail.properties
/WEB-INF/config/system.properties
其中class为自己定义的类
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)