java加载配置⽂件的三种⽅式⽐如我们要加载db.properties⽂件
如图:
⽐如我们要加载source⽬录下的db.properties⽂件。就有以下⼏种⽅式
第⼀种是⽂件io流:
c语言scanf不能加逗号public static void load1() throws Exception{
//⽂件真实路径
String fileName="E:/Workspace/SSHDemo/Source/db.properties";
Properties p=new Properties();
InputStream is=new FileInputStream(new File(fileName));
shell脚本判断用户参数是数字p.load(is);
System.out.println(p);
}
第⼆种:相对路径:
//相对路径
public static void load2() throws Exception{
shell脚本调试命令
Properties p=new Properties();
//InputStream SystemResourceAsStream("db.properties");
     InputStream is=Thread.currentThread().getContextClassLoader().getSystemResourceAsStream("db.properties");        p.load(is);
System.out.println(p);
}
public static void load2_1() throws Exception{
Properties p=new Properties();
InputStream is=ClassLoader().getSystemResourceAsStream("db.properties");
p.load(is);
System.out.println(p);
}
如果我们要获取src(类包)下的db.properties⼜该怎么处理呢?
struts2的主要作用是实现//相对于类路径  properties⽂件盒java放在⼀起
public static void load3() throws Exception{
Properties p=new Properties();
//InputStream SystemResourceAsStream("db.properties");
InputStream is=ResourceAsStream("db.properties");
p.load(is);
怎么删除sqlserver
System.out.println(p);
}
properties是什么文件三种⽅式都打印出来db.properties⽂件中的信息:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。