有时候,需要直接在java文件中访问.property配置文件。
代码如下。
Properties prop = new Properties(); InputStream inputFile = null; try { inputFile = 当前类名.class.getResourceAsStream("/ufinterface.properties"); prop.load(inputFile); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { try { inputFile.close(); } catch (IOException e) { e.printStackTrace(); } }
还有,这个.properyt在,src/main/resources下面。
时间: 2024-10-14 16:33:45