// String title = "行政院农业委员会农粮署";
? ? ? ? InputStream inputStream = this.getClass().getClassLoader()
? ? ? ? ? ? ? ? .getResourceAsStream("Messages.properties");
? ? ? ? Properties properties = new Properties();
? ? ? ? // load the inputStream using the Properties
? ? ? ? try {
? ? ? ? ? ? properties.load(inputStream);
? ? ? ? } catch (IOException e) {
? ? ? ? ? ? // TODO Auto-generated catch block
? ? ? ? ? ? throw new RuntimeException(e);
? ? ? ? }
? ? ? ? // get the value of the property
? ? ? ? String propValue = properties.getProperty("reportTitle");
? ? ? ? log.info("propValue" + propValue);
? ? ? ? builder.addParameter("reportTitle", propValue);
原文:大专栏 java get properties file
原文地址:https://www.cnblogs.com/chinatrump/p/11514237.html
时间: 2024-10-08 03:29:34