1.在类路径
com.hl.resources
中新建一个文件名为:
database.properties
,内容如下:
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/githubliaoliaoprojectmysql
username=root
password=root
2、建一个junit测试类,一定注意路径。
String fileName=”com/hl/resources/database.properties”;//properties文件放在是class类目录下
package test;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import org.junit.Test;
public class testProperties {
@Test
public void testProperties() throws IOException{
String fileName="com/hl/resources/database.properties";//properties文件放在是class类目录下
Properties p = new Properties();
InputStream in = testProperties.class.getResourceAsStream(fileName);//
p.load(in);
in.close();
if(p.containsKey("driver")){
String driver = p.getProperty("driver");
System.out.println(driver);
}
if(p.containsKey("url")){
String url = p.getProperty("url");
System.out.println(url);
}
if(p.containsKey("username")){
String username = p.getProperty("username");
System.out.println(username);
}
if(p.containsKey("password")){
String password = p.getProperty("password");
System.out.println(password);
}
}
}
版权声明:本文为qq5132834原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。