java1

 读properties

InputStream is = Main.class.getClassLoader().getResourceAsStream("javaLearn/configure.properties");
        System.out.println(is);
        Properties props = new Properties();
        try {
            props.load(is);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        String name = props.getProperty("name");

posted on 2016-03-04 07:48  anjuncc  阅读(88)  评论(0编辑  收藏  举报

导航