将 POJO 转换为 地图
可能的重复:
如何转换Java 对象(bean)到键值对(反之亦然)?
将 List
有自定义方法/ API 吗?
K = POJO 的字段名称,V 是对应的值
public class POJO implements Serializable{
String name;
String age;
//getters and setters
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果你指的是 K,V 的地图那么这将起作用
If you mean a map of K,V then this will work
假设您想要一个没有列表的
Map
,最简单的方法可能是使用一个简单的 for 循环:Assuming you want a
Map
sans list, the easiest way is probably with a simple for loop:您需要知道 POJO 名称。假设您有类似
pojo.getName()
的内容,那么它会像这样:注意我更改了您的要求,我转换了一个一张地图的 pojo 列表。
You need to know the POJO name. Assuming you have something like
pojo.getName()
, then it goes like this:Note that I changed your requirement, I've converted one list of pojos to one map.
听起来像是一份适合老好人的工作 Introspector。
工作示例:
Sounds like a job for the good and old Introspector.
Working example:
Apache Commons 的 BeanMap 完成这项工作
BeanMap from Apache Commons does the job
您可以使用反射来做到这一点。请参阅 Class.getDeclaredFields。这将为您提供类的字段,然后您可以从中获取值并填充您的地图。
请注意,您可能需要调用 setAccessible 如果字段是私有的,然后您才能获取值。
编辑:我的答案仅适用于构建地图时不知道 POJO 的字段/实现的情况。
You can use reflection to do that. See Class.getDeclaredFields. That will give you the fields of a class, you can then get the values from them and populate your map.
Note that you might need to invoke setAccessible on the fields if the are private before you can get the value.
Edit: My answer only applies to the case where you don't know the fields / implementation of the POJO when you build the map.