首页 > 代码库 > Java读取配置文件

Java读取配置文件

在src目录下新建配置文件test.properties

  格式为:key=value

  内容为:name=louis  

读取方式1:

  public static void props1() throws Exception {        //没调试成功,找不到文件        //Reader read = new FileReader("/db.properties");        //成功,默认找相对路径,如果加/,则从根目录开始找        //InputStream read = propertiesDemo.class.getResourceAsStream("/db.properties");        //成功,从根目录开始找        InputStream read = propertiesDemo.class.getClassLoader().getResourceAsStream("db.properties");        Properties props = new Properties();        props.load(read);        String s = props.getProperty("driver");        System.out.println(s);    }

读取方式2:

    public static void props2() {        //不用加.properties        ResourceBundle rb = ResourceBundle.getBundle("db");        String d = rb.getString("driver");        System.out.println(d);    }

 

在配置文件中,中文会自动转成Unicode码,可以设置默认编码为utf-8

 

使用配置文件,可以将一些数据写到配置文件中,如数据库连接的数据。

Java读取配置文件