反射获取属性DisplayName特性名字以及属性值

原文:反射获取属性DisplayName特性名字以及属性值

 /// <summary>
        /// 反射获取所有DisplayName标记值
        /// </summary>
        /// <typeparam name="T">实体类型</typeparam>
        /// <param name="model">需要获取的实体</param>
        /// <returns></returns>
        List<string> GetDisplayName<T>(T model)
        {
            //获取所有属性
            PropertyInfo[] properties = model.GetType().GetProperties();

            var list = new List<string>();
            foreach (var item in properties)
            {
                var attrs = item.GetCustomAttributes(typeof(DisplayNameAttribute), true);
                if (attrs != null)
                {
                    var displayName = ((DisplayNameAttribute)attrs[0]).DisplayName;
                    list.Add(displayName);
                }
            }
            return list;
        }

        /// <summary>
        /// 反射获取属性值
        /// </summary>
        /// <typeparam name="T">实体类型</typeparam>
        /// <param name="modelList">需要获取value的实体集合</param>
        /// <returns></returns>
        List<string> GetValue<T>(T modelList)
        {
            var list = new List<string>();
            var type = modelList.GetType();
            var properties = type.GetProperties();
            foreach (var item in properties)
            {
                var pName = item.Name;
                PropertyInfo propertyInfo = type.GetProperty(pName);
                var value = propertyInfo.GetValue(modelList)?.ToString();
                list.Add(value);
            }
            return list;
        }

原文地址:https://www.cnblogs.com/lonelyxmas/p/10474503.html

时间: 2024-10-11 11:43:17

反射获取属性DisplayName特性名字以及属性值的相关文章

Java 获取对象的所有属性及其对应的值

利用反射获取对象的所有属性及对应的值 1.获取属性名数组 private static String[] getFiledName(Object o) { Field[] fields = o.getClass().getDeclaredFields(); String[] fieldNames = new String[fields.length]; for (int i = 0; i < fields.length; i++) { fieldNames[i] = fields[i].getN

java反射获取对象的属性值和对象属性中的子属性值

近段时间在做web项目,前端使用的是jQuery EasyUI. 为方便需要,准备做一个前端通用的Datagird导出Excel功能,博主也考虑过思路和最终功能,1.前端选中行导出:2.当前页导出:3.当前过滤条件导出. 想偷懒在网上找找已有的代码改改,发现大部分只能满足个别需求,使用JS导出只能满足前端,使用代码才能实现3功能. ...... 好了,说了一堆废话,回归正题,本文是在做通用自定义字段导出时所需要,根据属性名去查找对象和子对象,找到对应属性值,抓取回来放到Excel中. 直接上代码

java 通过反射获取调用类方法及属性

首先说下反射是什么?反射是Sun公司推出的一组API,此组API位于Java.lang.reflect中 反射的作用是编写工具(例如eclipse),编写框架,当然对于一般的程序,我们不可能用反射来做这些事,一般反射大多是用于在构建类的实例以及调用类方法及属性. ok! 了解了反射是什么以及反射的应用领域,那么就来看看Java中是怎么实现反射的吧 Student类 public class Student {     public String name;     public String g

通过反射获取某个对象下的属性值,或通过父类获取

import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.*; /** * 通过反射获取某个对象下的属性值,或通过父类获取 * User: wangyongfei * Date

C#利用反射获取对象属性值

public static string GetObjectPropertyValue<T>(T t, string propertyname){     Type type = typeof(T); PropertyInfo property = type.GetProperty(propertyname); if (property == null) return string.Empty; object o = property.GetValue(t, null); if (o == n

c# 如何通过反射 获取\设置属性值

c# 如何通过反射 获取\设置属性值 //定义类public class MyClass{public int Property1 { get; set; }}static void Main(){MyClass tmp_Class = new MyClass();tmp_Class.Property1 = 2;Type type = tmp_Class.GetType(); //获取类型System.Reflection.PropertyInfo propertyInfo = type.Get

Java反射获取对象VO的属性值(通过Getter方法)

有时候,需要动态获取对象的属性值. 比如,给你一个List,要你遍历这个List的对象的属性,而这个List里的对象并不固定.比如,这次User,下次可能是Company. e.g. 这次我需要做一个Excel导出的工具类,导出的批量数据是以List类型传入的,List里的对象自然每次都不同,这取决于需要导出什么信息. 为了使用方便,将对象的属性名与属性值存于Map当中,使用时就可以直接遍历Map了. 此次的思路是通过反射和Getter方法取得值,然后记录在一个Map当中. Kick start

Java 使用反射获取类、方法、属性上的注释

有的时候我们想使用反射获取某个类的注释.方法上的注释.属性上的注释. 下面是一个简单的例子.里面包括了上面提到的三个点. package com.mine.practice.reflectfield; import java.lang.annotation.Annotation; import java.lang.reflect.Field; import java.lang.reflect.Method; import javax.xml.bind.annotation.XmlAccessTy

C# 反射获取属性值、名称、类型以及集合的属性值、类型名称

实体类 class Product { public string Id { get; set; } public string Name { get; set; } public List<ProductDetail> Detail { get; set; } public List<ProductComment> Comment { get; set; } } class ProductDetail { public string DtlId { get; set; } pub