黑马程序员技术交流社区
标题:
ServletContext之三种方式读取配置文件
[打印本页]
作者:
SyouRai_Tsk
时间:
2014-3-15 12:50
标题:
ServletContext之三种方式读取配置文件
配置文件分两种,如果是数据之间有关系,就使用Xml,如果数据之间没有关系,比如数据库的配置文件,则使用properties配置文件
WEB中ServletContext三种方式读取properties配置文件
1.如果你需要读取的文件要知道文件名整个路径,请使用getRealPath方法
2.读取properties配置文件时
Properties prop=new Properties();
prop.load(in);
这是模板代码
3.test3()这方法已经不经常使用,但是举例了出来
db.properties文件中的内容是:
username=root
password=root
url=jdbc:mysql://localhost:3306/test
Servlet文件内容:
package cn.itcast.servlet;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Properties;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class ServletDemo11 extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//test1();
//test2();
test3();
}
private void test1() throws IOException {
ServletContext sc=getServletContext();
InputStream in=sc.getResourceAsStream("/db.properties"); //这里返回流
Properties prop=new Properties();
prop.load(in);
String username=prop.getProperty("username");
String password=prop.getProperty("password");
String url=prop.getProperty("url");
System.out.println(username);
System.out.println(password);
System.out.println(url);
}
private void test2() throws IOException {
ServletContext sc=getServletContext();
String path=sc.getRealPath("/db.properties");//返回的值是C:\...这种的原文件路径
//例如D:\Program Files (x86)\MyEclipse 6.5\work\flx05\WebRoot\db.properties
FileInputStream in=new FileInputStream(path);
Properties prop=new Properties();
prop.load(in);
String username=prop.getProperty("username");
String password=prop.getProperty("password");
String url=prop.getProperty("url");
System.out.println(username);
System.out.println(password);
System.out.println(url);
}
private void test3() throws IOException {
ServletContext sc=getServletContext();
URL url=sc.getResource("/db.properties");
InputStream in=url.openStream();
Properties prop=new Properties();
prop.load(in);
String username=prop.getProperty("username");
String password=prop.getProperty("password");
String neturl=prop.getProperty("url");
System.out.println(username);
System.out.println(password);
System.out.println(neturl);
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2