电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術文章
文章詳情頁

利用Java反射機制實現對象相同字段的復制操作

瀏覽:29日期:2022-08-26 14:57:02

一、如何實現不同類型對象之間的復制問題?

1、為什么會有這個問題?

近來在進行一個項目開發的時候,為了隱藏后端數據庫表結構、同時也為了配合給前端一個更友好的API接口文檔(swagger API文檔),我采用POJO來對應數據表結構,使用VO來給傳遞前端要展示的數據,同時使用DTO來進行請求參數的封裝。以上是一個具體的場景,可以發現這樣子一個現象:POJO、VO、DTO對象是同一個數據的不同視圖,所以會有很多相同的字段,由于不同的地方使用不同的對象,無可避免的會存在對象之間的值遷移問題,遷移的一個特征就是需要遷移的值字段相同。字段相同,于是才有了不同對象之間進行值遷移復制的問題。

2、現有的解決方法

一個一個的get出來后又set進去。這個方法無可避免會增加很多的編碼復雜度,還是一些很沒有營養的代碼,看多了還會煩,所以作為一個有點小追求的程序員都沒有辦法忍受這種摧殘。

使用別人已經存在的工具。在spring包里面有一個可以復制對象屬性的工具方法,可以進行對象值的復制,下一段我們詳細去分析它的這個工具方法。

自己動手豐衣足食。自己造工具來用,之所以自己造工具不是因為喜歡造工具,而是現有的工具沒辦法解決自己的需求,不得已而為之。

二、他山之石可以攻玉,詳談spring的對象復制工具

1、看看spring的對象復制工具到底咋樣?

類名:org.springframework.beans.BeanUtils

這個類里面所有的屬性復制的方法都調用了同一個方法,我們就直接分析這個原始的方法就行了。

/** * Copy the property values of the given source bean into the given target bean. * <p>Note: The source and target classes do not have to match or even be derived * from each other, as long as the properties match. Any bean properties that the * source bean exposes but the target bean does not will silently be ignored. * @param source the source bean:也就是說要從這個對象里面復制值出去 * @param target the target bean:出去就是復制到這里面來 * @param editable the class (or interface) to restrict property setting to:這個類對象是target的父類或其實現的接口,用于控制屬性復制的范圍 * @param ignoreProperties array of property names to ignore:需要忽略的字段 * @throws BeansException if the copying failed * @see BeanWrapper */ private static void copyProperties(Object source, Object target, Class<?> editable, String... ignoreProperties) throws BeansException { //這里在校驗要復制的對象是不可以為null的,這兩個方法可是會報錯的!! Assert.notNull(source, 'Source must not be null'); Assert.notNull(target, 'Target must not be null'); //這里和下面的代碼就有意思了 Class<?> actualEditable = target.getClass();//獲取目標對象的動態類型 //下面判斷的意圖在于控制屬性復制的范圍 if (editable != null) { //必須是target對象的父類或者其實現的接口類型,相當于instanceof運算符 if (!editable.isInstance(target)) { throw new IllegalArgumentException('Target class [' + target.getClass().getName() + '] not assignable to Editable class [' + editable.getName() + ']'); } actualEditable = editable; } //不得不說,下面這段代碼乖巧的像綿羊,待我們來分析分析它是如何如何乖巧的 PropertyDescriptor[] targetPds = getPropertyDescriptors(actualEditable);//獲取屬性描述,描述是什么?描述就是對屬性的方法信息的封裝,好乖。 List<String> ignoreList = (ignoreProperties != null ? Arrays.asList(ignoreProperties) : null); //重頭戲開始了!開始進行復制了 for (PropertyDescriptor targetPd : targetPds) { //先判斷有沒有寫方法,沒有寫方法我也就沒有必要讀屬性出來了,這個懶偷的真好! Method writeMethod = targetPd.getWriteMethod(); //首先,沒有寫方法的字段我不寫,乖巧撒?就是說你不讓我改我就不改,讓我忽略我就忽略! if (writeMethod != null && (ignoreList == null || !ignoreList.contains(targetPd.getName()))) { PropertyDescriptor sourcePd = getPropertyDescriptor(source.getClass(), targetPd.getName()); //如果沒辦法從原對象里面讀出屬性也沒有必要繼續了 if (sourcePd != null) { Method readMethod = sourcePd.getReadMethod(); //這里就更乖巧了!寫方法不讓我寫我也不寫!!! if (readMethod != null && ClassUtils.isAssignable(writeMethod.getParameterTypes()[0], readMethod.getReturnType())) { try { //這里就算了,來都來了,就乖乖地進行值復制吧,別搞東搞西的了 if (!Modifier.isPublic(readMethod.getDeclaringClass().getModifiers())) { readMethod.setAccessible(true); } Object value = readMethod.invoke(source); if (!Modifier.isPublic(writeMethod.getDeclaringClass().getModifiers())) { writeMethod.setAccessible(true); } writeMethod.invoke(target, value); } catch (Throwable ex) { throw new FatalBeanException( 'Could not copy property ’' + targetPd.getName() + '’ from source to target', ex); } } } } } }

2、對復制工具的一些看法和總結

總結上一段代碼的分析,我們發現spring自帶的工具有以下特點:

它名副其實的是在復制屬性,而不是字段!!

它可以通過一個目標對象的父類或者其實現的接口來控制需要復制屬性的范圍

很貼心的可以忽略原對象的某些字段,可以通過2的方法忽略某些目標對象的字段

但是,這遠遠不夠!!!我需要如下的功能:

復制對象的字段,而不是屬性,也就是說我需要一個更暴力的復制工具。

我需要忽略原對象的某些字段,同時也能夠忽略目標對象的某些字段。

我的項目還需要忽略原對象為null的字段和目標對象不為null的字段

帶著這三個需求,開始我的工具制造。

三、自己動手豐衣足食

1、我需要解析字節碼

為了避免對字節碼的重復解析,使用緩存來保留解析過的字節碼解析結果,同時為了不讓這個工具太占用內存,使用軟引用來進行緩存,上代碼:

/* ****************************************************** * 基礎的用于支持反射解析的解析結果緩存,使用軟引用實現 ****************************************************** */ private static final Map<Class<?>,SoftReference<Map<String,Field>>> resolvedClassCache = new ConcurrentHashMap<>(); /** * 同步解析字節碼對象,將解析的結果放入到緩存 1、解析后的字段對象全部 accessAble * 1、返回的集合不支持修改,要修改請記得自己重新建一個復制的副本 * @param sourceClass:需要解析的字節碼對象 */ @SuppressWarnings('SynchronizationOnLocalVariableOrMethodParameter') public static Map<String,Field> resolveClassFieldMap(final Class<?> sourceClass){ SoftReference<Map<String,Field>> softReference = resolvedClassCache.get(sourceClass); //判斷是否已經被初始化 if(softReference == null || softReference.get() == null){ //對同一個字節碼對象的解析是同步的,但是不同字節碼對象的解析是并發的,因為字節碼對象只有一個 synchronized(sourceClass){ softReference = resolvedClassCache.get(sourceClass); if(softReference == null || softReference.get() == null){ //采用:<字段名稱,字段對象> 來記錄解析結果 Map<String,Field> fieldMap = new HashMap<>(); /* Returns an array of Field objects reflecting all the fields declared by the class or interface represented by this Class object. This includes public, protected, default access, and private fields, but excludes inherited fields */ Field[] declaredFields = sourceClass.getDeclaredFields(); if(declaredFields != null && declaredFields.length > 0){ for(Field field : declaredFields){ /* Set the accessible flag for this object to the indicated boolean value. */ field.setAccessible(true); //字段名稱和字段對象 fieldMap.put(field.getName(),field); } } //設置為不變Map,這個肯定是不能夠改的啊!所以取的時候需要重新構建一個map fieldMap = Collections.unmodifiableMap(fieldMap); softReference = new SoftReference<>(fieldMap); /* 更新緩存,將解析后的數據加入到緩存里面去 */ resolvedClassCache.put(sourceClass,softReference); return fieldMap; } } } /* 運行到這里來的時候要么早就存在,要么就是已經被其他的線程給初始化了 */ return softReference.get(); }

2、我需要能夠進行對象的復制,基本方法

/** * 進行屬性的基本復制操作 * @param source:源對象 * @param sourceFieldMap:原對象解析結果 * @param target:目標對象 * @param targetFieldMap:目標對象解析結果 */ public static void copyObjectProperties(Object source,Map<String,Field> sourceFieldMap,Object target,Map<String,Field> targetFieldMap){ //進行屬性值復制 sourceFieldMap.forEach( (fieldName,sourceField) -> { //查看目標對象是否存在這個字段 Field targetField = targetFieldMap.get(fieldName); if(targetField != null){ try{ //對目標字段進行賦值操作 targetField.set(target,sourceField.get(source)); }catch(IllegalAccessException e){ e.printStackTrace(); } } } ); }

3、夜深了,準備睡覺了

基于這兩個方法,對其進行封裝,實現了我需要的功能,并且在項目中運行目前還沒有bug,應該可以直接用在生產環境,各位看官覺得可以可以拿來試一試哦!!

4、完整的代碼(帶注釋:需要自取,無外部依賴,拿來即用)

package edu.cqupt.demonstration.common.util;import java.lang.ref.SoftReference;import java.lang.reflect.Field;import java.util.*;import java.util.concurrent.ConcurrentHashMap;/** * 反射的工具集,主要用于對對象的復制操作 */public class ReflectUtil { /* ****************************************************** * 基礎的用于支持反射解析的解析結果緩存,使用軟引用實現 ****************************************************** */ private static final Map<Class<?>,SoftReference<Map<String,Field>>> resolvedClassCache = new ConcurrentHashMap<>(); /* **************************************** * 獲取一個對象指定條件字段名稱的工具方法 **************************************** */ /** * 獲取一個對象里面字段為null的字段名稱集合 */ public static String[] getNullValueFieldNames(Object source){ //非空校驗:NullPointerException Objects.requireNonNull(source); Class<?> sourceClass = source.getClass(); //從緩存里面獲取,如果緩存里面沒有就會進行第一次反射解析 Map<String,Field> classFieldMap = getClassFieldMapWithCache(sourceClass); List<String> nullValueFieldNames = new ArrayList<>(); classFieldMap.forEach( (fieldName,field) -> { try{ //挑選出值為null的字段名稱 if(field.get(source) == null){ nullValueFieldNames.add(fieldName); } }catch(IllegalAccessException e){ e.printStackTrace(); } } ); return nullValueFieldNames.toArray(new String[]{}); } /** * 獲取一個對象里面字段不為null的字段名稱集合 */ public static String[] getNonNullValueFieldNames(Object source){ //非空校驗 Objects.requireNonNull(source); //獲取空值字段名稱 String[] nullValueFieldNames = getNullValueFieldNames(source); Map<String,Field> classFieldMap = getClassFieldMapWithCache(source.getClass()); //獲取全部的字段名稱,因為原數據沒辦法修改,所以需要重新建立一個集合來進行判斷 Set<String> allFieldNames = new HashSet<>(classFieldMap.keySet()); //移除掉值為null的字段名稱 allFieldNames.removeAll(Arrays.asList(nullValueFieldNames)); return allFieldNames.toArray(new String[]{}); } /* *************************************************************** * 復制一個對象的相關工具方法,注意事項如下: * 1、只能復制字段名稱相同且數據類型兼容的字段數據 * 2、只能復制這個對象實際類(運行時動態類型)里面聲明的各種字段 *************************************************************** */ /** * 將一個對象里面字段相同、類型兼容的數據復制到另外一個對象去 * 1、只復制類的運行時類型的聲明的全部訪問權限的字段 * @param source:從這個對象復制 * @param target:復制到這個對象來 */ public static void copyPropertiesSimple(Object source,Object target){ copyObjectProperties( source,new HashMap<>(getClassFieldMapWithCache(source.getClass())), target,new HashMap<>(getClassFieldMapWithCache(target.getClass()))); } /** * 除實現 copyPropertiesSimple 的功能外,會忽略掉原對象的指定字段的復制 * @param ignoreFieldNames:需要忽略的原對象字段名稱集合 */ public static void copyPropertiesWithIgnoreSourceFields(Object source,Object target,String ...ignoreFieldNames){ Map<String,Field> sourceFieldMap = new HashMap<>(getClassFieldMapWithCache(source.getClass())); filterByFieldName(sourceFieldMap,ignoreFieldNames); copyObjectProperties(source,sourceFieldMap,target,new HashMap<>(getClassFieldMapWithCache(target.getClass()))); } /** * 除實現 copyPropertiesSimple 的功能外,會忽略掉原對象字段值為null的字段 */ public static void copyPropertiesWithNonNullSourceFields(Object source,Object target){ Map<String,Field> sourceFieldMap = new HashMap<>(getClassFieldMapWithCache(source.getClass())); filterByFieldValue(source,sourceFieldMap,true); copyObjectProperties(source,sourceFieldMap,target,new HashMap<>(getClassFieldMapWithCache(target.getClass()))); } /** * 除實現 copyPropertiesSimple 的功能外,會忽略掉目標對象的指定字段的復制 * @param ignoreFieldNames:需要忽略的原對象字段名稱集合 */ public static void copyPropertiesWithIgnoreTargetFields(Object source,Object target,String ...ignoreFieldNames){ Map<String,Field> targetFieldMap = new HashMap<>(getClassFieldMapWithCache(target.getClass())); filterByFieldName(targetFieldMap,ignoreFieldNames); copyObjectProperties(source,new HashMap<>(getClassFieldMapWithCache(source.getClass())),target,targetFieldMap); } /** * 除實現 copyPropertiesSimple 的功能外,如果目標對象的屬性值不為null將不進行覆蓋 */ public static void copyPropertiesWithTargetFieldNonOverwrite(Object source,Object target){ Map<String,Field> targetFieldMap = new HashMap<>(getClassFieldMapWithCache(target.getClass())); filterByFieldValue(target,targetFieldMap,false); copyObjectProperties(source,new HashMap<>(getClassFieldMapWithCache(source.getClass())),target,targetFieldMap); } /** * 進行復制的完全定制復制 * @param source:源對象 * @param target:目標對象 * @param ignoreSourceFieldNames:需要忽略的原對象字段名稱集合 * @param ignoreTargetFieldNames:要忽略的目標對象字段集合 * @param isSourceFieldValueNullAble:是否在源對象的字段為null的時候仍然進行賦值 * @param isTargetFiledValueOverwrite:是否在目標對象的值不為null的時候仍然進行賦值 */ public static void copyPropertiesWithConditions(Object source,Object target ,String[] ignoreSourceFieldNames,String[] ignoreTargetFieldNames ,boolean isSourceFieldValueNullAble,boolean isTargetFiledValueOverwrite){ Map<String,Field> sourceFieldMap = new HashMap<>(getClassFieldMapWithCache(source.getClass())); Map<String,Field> targetFieldMap = new HashMap<>(getClassFieldMapWithCache(target.getClass())); if(!isSourceFieldValueNullAble){ filterByFieldValue(source,sourceFieldMap,true); } if(!isTargetFiledValueOverwrite){ filterByFieldValue(target,targetFieldMap,false); } filterByFieldName(sourceFieldMap,ignoreSourceFieldNames); filterByFieldName(targetFieldMap,ignoreTargetFieldNames); copyObjectProperties(source,sourceFieldMap,target,targetFieldMap); } /* ****************************** * 內部工具方法或者內部兼容方法 ****************************** */ /** * 同步解析字節碼對象,將解析的結果放入到緩存 1、解析后的字段對象全部 accessAble * 1、返回的集合不支持修改,要修改請記得自己重新建一個復制的副本 * @param sourceClass:需要解析的字節碼對象 */ @SuppressWarnings('SynchronizationOnLocalVariableOrMethodParameter') public static Map<String,Field> resolveClassFieldMap(final Class<?> sourceClass){ SoftReference<Map<String,Field>> softReference = resolvedClassCache.get(sourceClass); //判斷是否已經被初始化 if(softReference == null || softReference.get() == null){ //對同一個字節碼對象的解析是同步的,但是不同字節碼對象的解析是并發的 synchronized(sourceClass){ softReference = resolvedClassCache.get(sourceClass); if(softReference == null || softReference.get() == null){ Map<String,Field> fieldMap = new HashMap<>(); /* Returns an array of Field objects reflecting all the fields declared by the class or interface represented by this Class object. This includes public, protected, default access, and private fields, but excludes inherited fields */ Field[] declaredFields = sourceClass.getDeclaredFields(); if(declaredFields != null && declaredFields.length > 0){ for(Field field : declaredFields){ /* Set the accessible flag for this object to the indicated boolean value. */ field.setAccessible(true); fieldMap.put(field.getName(),field); } } //設置為不變Map fieldMap = Collections.unmodifiableMap(fieldMap); softReference = new SoftReference<>(fieldMap); /* 更新緩存,將解析后的數據加入到緩存里面去 */ resolvedClassCache.put(sourceClass,softReference); return fieldMap; } } } /* 運行到這里來的時候要么早就存在,要么就是已經被其他的線程給初始化了 */ return softReference.get(); } /** * 確保正確的從緩存里面獲取解析后的數據 * 1、返回的集合不支持修改,要修改請記得自己重新建一個復制的副本 * @param sourceClass:需要解析的字節碼對象 */ public static Map<String,Field> getClassFieldMapWithCache(Class<?> sourceClass){ //查看緩存里面有沒有已經解析完畢的現成的數據 SoftReference<Map<String,Field>> softReference = resolvedClassCache.get(sourceClass); //確保classFieldMap的正確初始化和緩存 if(softReference == null || softReference.get() == null){ //解析字節碼對象 return resolveClassFieldMap(sourceClass); }else { //從緩存里面正確的取出數據 return softReference.get(); } } /** * 將一個可變參數集合轉換為List集合,當為空的時候返回空集合 */ public static <T> List<T> resolveArrayToList(T ...args){ List<T> result = new ArrayList<>(); if(args != null && args.length > 0){ result = Arrays.asList(args); } return result; } /** * 進行屬性的基本復制操作 * @param source:源對象 * @param sourceFieldMap:原對象解析結果 * @param target:目標對象 * @param targetFieldMap:目標對象解析結果 */ public static void copyObjectProperties(Object source,Map<String,Field> sourceFieldMap,Object target,Map<String,Field> targetFieldMap){ //進行屬性值復制 sourceFieldMap.forEach( (fieldName,sourceField) -> { //查看目標對象是否存在這個字段 Field targetField = targetFieldMap.get(fieldName); if(targetField != null){ try{ //對目標字段進行賦值操作 targetField.set(target,sourceField.get(source)); }catch(IllegalAccessException e){ e.printStackTrace(); } } } ); } /** * 忽略掉對象里面的某些字段 */ public static void filterByFieldName(Map<String,Field> fieldMap,String ... ignoreFieldNames){ //需要忽略的對象字段 List<String> ignoreNames = ReflectUtil.<String>resolveArrayToList(ignoreFieldNames); //移除忽略的對象字段 fieldMap.keySet().removeAll(ignoreNames); } /** * 忽略掉非空的字段或者空的字段 */ public static void filterByFieldValue(Object object,Map<String,Field> fieldMap,boolean filterNullAble){ Iterator<String> iterator = fieldMap.keySet().iterator(); if(filterNullAble){ while(iterator.hasNext()){ try{ //移除值為null的字段 if(fieldMap.get(iterator.next()).get(object) == null){ iterator.remove(); } }catch(IllegalAccessException e){ e.printStackTrace(); } } }else { while(iterator.hasNext()){ try{ //移除字段不為null的字段 if(fieldMap.get(iterator.next()).get(object) != null){ iterator.remove(); } }catch(IllegalAccessException e){ e.printStackTrace(); } } } }}

補充知識:Java將兩個JavaBean里相同的字段自動填充

最近因為經常會操作講兩個JavaBean之間相同的字段互相填充,所以就寫了個偷懶的方法。記錄一下

/** * 將兩個JavaBean里相同的字段自動填充 * @param dto 參數對象 * @param obj 待填充的對象 */public static void autoFillEqFields(Object dto, Object obj) {try {Field[] pfields = dto.getClass().getDeclaredFields(); Field[] ofields = obj.getClass().getDeclaredFields(); for (Field of : ofields) {if (of.getName().equals('serialVersionUID')) {continue;}for (Field pf : pfields) {if (of.getName().equals(pf.getName())) {PropertyDescriptor rpd = new PropertyDescriptor(pf.getName(), dto.getClass());Method getMethod = rpd.getReadMethod();// 獲得讀方法 PropertyDescriptor wpd = new PropertyDescriptor(pf.getName(), obj.getClass());Method setMethod = wpd.getWriteMethod();// 獲得寫方法 setMethod.invoke(obj, getMethod.invoke(dto));}}}} catch (Exception e) {e.printStackTrace();}} /** * 將兩個JavaBean里相同的字段自動填充,按指定的字段填充 * @param dto * @param obj * @param String[] fields */public static void autoFillEqFields(Object dto, Object obj, String[] fields) {try {Field[] ofields = obj.getClass().getDeclaredFields(); for (Field of : ofields) {if (of.getName().equals('serialVersionUID')) {continue;}for (String field : fields) {if (of.getName().equals(field)) {PropertyDescriptor rpd = new PropertyDescriptor(field, dto.getClass());Method getMethod = rpd.getReadMethod();// 獲得讀方法 PropertyDescriptor wpd = new PropertyDescriptor(field, obj.getClass());Method setMethod = wpd.getWriteMethod();// 獲得寫方法 setMethod.invoke(obj, getMethod.invoke(dto));}}}} catch (Exception e) {e.printStackTrace();}}

但這樣寫不能把父類有的屬性自動賦值所以修改了一下

/** * 將兩個JavaBean里相同的字段自動填充 * @param obj 原JavaBean對象 * @param toObj 將要填充的對象 */ public static void autoFillEqFields(Object obj, Object toObj) { try { Map<String, Method> getMaps = new HashMap<>(); Method[] sourceMethods = obj.getClass().getMethods(); for (Method m : sourceMethods) { if (m.getName().startsWith('get')) { getMaps.put(m.getName(), m); } } Method[] targetMethods = toObj.getClass().getMethods(); for (Method m : targetMethods) { if (!m.getName().startsWith('set')) { continue; } String key = 'g' + m.getName().substring(1); Method getm = getMaps.get(key); if (null == getm) { continue; } // 寫入方法寫入 m.invoke(toObj, getm.invoke(obj)); } } catch (Exception e) { e.printStackTrace(); } }

以上這篇利用Java反射機制實現對象相同字段的復制操作就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持好吧啦網。

標簽: Java
相關文章:
主站蜘蛛池模板: 伺服电机_直流伺服_交流伺服_DD马达_拓达官方网站 | 茅茅虫AI论文写作助手-免费AIGC论文查重_写毕业论文降重 | 体检车_移动CT车_CT检查车_CT车_深圳市艾克瑞电气有限公司移动CT体检车厂家-深圳市艾克瑞电气有限公司 | 传递窗_超净|洁净工作台_高效过滤器-传递窗厂家广州梓净公司 | 汽液过滤网厂家_安平县银锐丝网有限公司 | 工业铝型材生产厂家_铝合金型材配件批发精加工定制厂商 - 上海岐易铝业 | 退火炉,燃气退火炉,燃气热处理炉生产厂家-丹阳市丰泰工业炉有限公司 | 南京欧陆电气股份有限公司-风力发电机官网 | 517瓜水果特产网|一个专注特产好物的网站 | 楼承板-开口楼承板-闭口楼承板-无锡海逵 | 365文案网_全网创意文案句子素材站| 精密交叉滚子轴承厂家,转盘轴承,YRT转台轴承-洛阳千协轴承 | 企业微信营销_企业微信服务商_私域流量运营_艾客SCRM官网 | 精密模具加工制造 - 富东懿 | 工业PH计|工业ph酸度计|在线PH计价格-合肥卓尔仪器仪表有限公司 济南画室培训-美术高考培训-山东艺霖艺术培训画室 | 二手色谱仪器,十万分之一分析天平,蒸发光检测器,电位滴定仪-湖北捷岛科学仪器有限公司 | 万博士范文网-您身边的范文参考网站Vanbs.com | 真空上料机(一种真空输送机)-百科| 小型高低温循环试验箱-可程式高低温湿热交变试验箱-东莞市拓德环境测试设备有限公司 | 必胜高考网_全国高考备考和志愿填报信息平台 | 低噪声电流前置放大器-SR570电流前置放大器-深圳市嘉士达精密仪器有限公司 | 一体化净水器_一体化净水设备_一体化水处理设备-江苏旭浩鑫环保科技有限公司 | 储气罐,真空罐,缓冲罐,隔膜气压罐厂家批发价格,空压机储气罐规格型号-上海申容压力容器集团有限公司 | 扬子叉车厂家_升降平台_电动搬运车|堆高车-扬子仓储叉车官网 | 紧急切断阀_气动切断阀_不锈钢阀门_截止阀_球阀_蝶阀_闸阀-上海上兆阀门制造有限公司 | 吹塑加工_大型吹塑加工_滚塑代加工-莱力奇吹塑加工有限公司 | ★济南领跃标识制作公司★济南标识制作,标牌制作,山东标识制作,济南标牌厂 | 太原装修公司_山西整装家装设计_太原室内装潢软装_肖邦家居 | 炭黑吸油计_测试仪,单颗粒子硬度仪_ASTM标准炭黑自销-上海贺纳斯仪器仪表有限公司(HITEC中国办事处) | 聚氨酯催化剂K15,延迟催化剂SA-1,叔胺延迟催化剂,DBU,二甲基哌嗪,催化剂TMR-2,-聚氨酯催化剂生产厂家 | 快速门厂家-快速卷帘门-工业快速门-硬质快速门-西朗门业 | 集菌仪厂家_全封闭_封闭式_智能智能集菌仪厂家-上海郓曹 | 轴流风机-鼓风机-离心风机-散热风扇-罩极电机,生产厂家-首肯电子 | 广州冷却塔维修厂家_冷却塔修理_凉水塔风机电机填料抢修-广东康明节能空调有限公司 | 破碎机锤头_耐磨锤头_合金锤头-鼎成机械一站式耐磨铸件定制服务 微型驱动系统解决方案-深圳市兆威机电股份有限公司 | 破碎机锤头_耐磨锤头_合金锤头-鼎成机械一站式耐磨铸件定制服务 微型驱动系统解决方案-深圳市兆威机电股份有限公司 | 合肥防火门窗/隔断_合肥防火卷帘门厂家_安徽耐火窗_良万消防设备有限公司 | 户外环保不锈钢垃圾桶_标识标牌制作_园林公园椅厂家_花箱定制-北京汇众环艺 | 内六角扳手「厂家」-温州市威豪五金工具有限公司 | 磁力加热搅拌器-多工位|大功率|数显恒温磁力搅拌器-司乐仪器官网 | 环保袋,无纺布袋,无纺布打孔袋,保温袋,环保袋定制,环保袋厂家,环雅包装-十七年环保袋定制厂家 |