[code]根据xml配置文件得到数据库连接Connection

Java SAX解析器解析XML配置文件
http://www.cnblogs.com/foresthjj/articles/863147.html

配置文件格式:
<?xml version="1.0" encoding="UTF-8"?>
<config>
	<dbtype>com.mysql.jdbc.Driver</dbtype>
	<dbhost>127.0.0.1</dbhost>
	<dbname>test</dbname>
	<dbuser>root</dbuser>
	<dbpassword>root</dbpassword>   
</config>


你可能感兴趣的:(java,html,mysql,xml,jdbc)