读取配置文件的方法
/** * @description: 加载properties文件 * @param 文件路径 * @return Properties 对象 * @author douyumeng * @throws IOException,FileNotFoundException */ public static Properties getProperties(String path){ BaseUtil bu = new BaseUtil(); String classpath = bu.getWebClassesPath(); path=classpath+path; Properties prop = new Properties(); try { InputStream in = new FileInputStream(new File(path)); prop.load(in); } catch (Exception e) { e.printStackTrace(); return null; } return prop; }
使用:
增加了size-config.properties文件
读取方法为:BaseUtil.getProperties("com/tshn/config/attachment/size-config.properties").getProperty("yourkey")
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步