使用java反射api访问私有对象
我可以使用java反射访问并获取对象的值吗
?有方法获取 --getLong,getInt ,但我找不到 getObject()
Can I access and get the value of object using java reflection
ther is method to get --getLong,getInt ,but I couldn't find getObject()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否只是在寻找
Field.get(Object obj)
?Are you looking for simply
Field.get(Object obj)
?类 aClass = MyObject.class
Field field = aClass.getField("someField");
上面的例子将返回字段 someField 对应的 Field 实例
正如下面的 MyObject 中声明的那样:
public class MyObject{
公共字符串 someField = null;
}
如果不存在具有作为 getField() 方法参数给出的名称的字段,则 a
抛出 NoSuchFieldException。
Class aClass = MyObject.class
Field field = aClass.getField("someField");
The example above will return the Field instance corresponding to the field someField
as declared in the MyObject below:
public class MyObject{
public String someField = null;
}
If no field exists with the name given as parameter to the getField() method, a
NoSuchFieldException is thrown.