读取properties文件方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取properties文件方式相关的知识,希望对你有一定的参考价值。
//src目录下 static Properties pro = new Properties(); //jar包时用(ide也可以) // pro.load(Tool.class.getClassLoader().getResourceAsStream("config.properties")) // pro.load(ClassLoader.getSystemClassLoader().getResourceAsStream("config.properties")); //IDE用 pro.load(new FileInputStream(Ftpfile.class.getClassLoader().getResource("config.properties").getPath())); // 生成文件对象 // File pf = new File(System.getProperty("user.home") + "/Desktop/config.properties"); // // 生成文件输入流 // FileInputStream inpf = null; // inpf = new FileInputStream(pf); // pro.load(inpf);
以上是关于读取properties文件方式的主要内容,如果未能解决你的问题,请参考以下文章
五种方式让你在java中读取properties文件内容不再是难题