Apache Commons BeanUtils 获取列表属性
在 Apache Commons BeanUtil 中,如何获取列表中的类型?例如
class Track {
List<Actor> actorList = new ArrayList<Actor>();
}
System.err.println(PropertyUtils.getPropertyType(trackBean, "actorList"));
// it should give me Actor instead of java.util.List
谢谢。
In Apache Commons BeanUtil, how to get a type inside a list ? for example
class Track {
List<Actor> actorList = new ArrayList<Actor>();
}
System.err.println(PropertyUtils.getPropertyType(trackBean, "actorList"));
// it should give me Actor instead of java.util.List
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道beanutils是否可以。但你可以通过反思来做到这一点。
您可能需要进行一些上面的检查(是否可以强制转换、实际类型参数是否存在等),但您已经明白了。
类型信息在运行时被删除,除非它是结构性的——例如字段或类的类型参数。
I don't know if it's possible with beanutils. But you can do so with reflection.
You will perhaps need a few check above (whether you can cast, whether the actual type arguments exist, etc), but you get the idea.
Type information is erased at runtime, unless it is structural - e.g. the type argument of a field, or of class.