/** * 传入需要解析的文件属性,传入文件的路径 * @param para 需要获取的属性名称、也就是键值对中的键名称 * @param filepath * @return */ public static String getPara(String para,String filepath){ InputStream is = null; try{ Properties properties = new Properties(); //接下来需要获取.properties的文件路径: String path = Thread.currentThread().getContextClassLoader().getResource(filepath).getPath(); //然后加载该文件: is = new FileInputStream(path); properties.load(is); //最后你就可以get它的属性了: String para1=properties.getProperty(para); System.out.println(para1); return para1; }catch(Exception e){ e.printStackTrace(); }finally{ try { is.close(); } catch (IOException e) { e.printStackTrace(); } } return ""; }
引入包的路径
import java.util.Properties;
时间: 2024-11-05 06:26:59