在java应用程序开发中,经常需要读取配置文件来获取系统参数或配置信息。配置文件可以使用xml格式文件,在java中存在.properties文件专门用作配置文件使用。在java中,类Properties用于处理配置文件相关的读取。下面是一个关于根据所提供的键获取值的示例。 public static String getvalue(String key) { Properties p=new Properties(); FileInputStream fis; String url = new File("").getAbsolutePath() + File.separator+ "config.properties"; // 获取位于工程根目录下的config.properties配置文件路径 try { fis = new FileInputStream(url); p.load(fis); fis.close(); } catch (Exception e) { // TODO Auto-generated catch block System.out.print("problems with properties"); e.printStackTrace(); } return p.getProperty(key); }