日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Java 反射将配置文件数据加载到对象属性中

發布時間:2025/6/15 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java 反射将配置文件数据加载到对象属性中 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

?

Java 反射將配置文件數據加載到對象屬性中

Java 反射 可以根據類名找到相應的類,也可以將配置文件中的值加載到對應屬性中。

需要用到的包:spring-core-3.1.2.Release.jar

Java 反射的一種應用:

import java.io.File; import java.io.IOException; import java.lang.reflect.Field; import java.util.Properties;import org.springframework.core.io.FileSystemResource; import org.springframework.core.io.support.PropertiesLoaderUtils;/*** 類說明* * <pre>* Modify Information:* Author Date Description* ============ =========== ============================* DELL 2017年4月25日 Create this file* </pre>* */public class Reflect4Proterties {public static final String APP_CONFIG_FILE = "application.properties";public static int batchUpdateSize = 100;/*** @param args* @throws IOException */public static void main(String[] args) throws IOException {String configPath ="D:/CPCN/Payment/StatementExternal/config";FileSystemResource resource = new FileSystemResource(configPath + File.separatorChar + APP_CONFIG_FILE);Properties configProperties = new Properties();PropertiesLoaderUtils.fillProperties(configProperties, resource);try {reflectFieldValue("StatExternal", Reflect4Proterties.class, configProperties, null);} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}}public static void reflectFieldValue(String preFix, Class<?> reflectClass, Properties properties, Object obj) throws Exception {Field[] allFields = reflectClass.getDeclaredFields();Field thisField = null;String fieldName = "";String fieldValue = "";String preFixStr = isNotEmpty(preFix) ? (preFix + ".") : "";// 如果有前綴,則是前綴加上.如前綴BANK_B2C_104,則最后去相應properties中的值為BANK_B2C_104.(fileldName)for (int i = 0; i < allFields.length; i++) {thisField = allFields[i];fieldName = thisField.getName();fieldName = preFixStr + fieldName;fieldValue = (String) properties.get(fieldName);// 此處只能用null,不能用"",因為bank.properties中可能有空的值if (null != fieldValue) {if ("int".equals(thisField.getType().getName())) {thisField.set(obj, Integer.parseInt(fieldValue));} else if ("boolean".equals(thisField.getType().getName())) {thisField.set(obj, Boolean.parseBoolean(fieldValue));} else if ("long".equals(thisField.getType().getName())) {thisField.set(obj, Long.parseLong(fieldValue));} else {thisField.set(obj, fieldValue.trim());}System.out.println("---注入" + fieldName + "的值為\"" + fieldValue + "\"成功---");}}}/*** 判斷字符串是否不為空*/public static boolean isNotEmpty(String str) {return str != null && !"".equals(str.trim());}}

  

?配置文件:

D:/CPCN/Payment/StatementExternal/config/application.properties

#每次批量更新條數上限 StatExternal.batchUpdateSize=100

  

轉載于:https://www.cnblogs.com/wangming2011hit/p/6760974.html

總結

以上是生活随笔為你收集整理的Java 反射将配置文件数据加载到对象属性中的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。