使用java反射api访问私有对象

发布于 2024-10-21 06:39:19 字数 79 浏览 0 评论 0原文

我可以使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

﹏雨一样淡蓝的深情 2024-10-28 06:39:19

您是否只是在寻找 Field.get(Object obj)

Are you looking for simply Field.get(Object obj)?

听不够的曲调 2024-10-28 06:39:19

类 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文