Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have POJO named LogingBean contain two fields named username and password and getter setter for the same.

Is it possible to set value of out VO's field using java.lang.reflect.method API ?

share|improve this question
Technically a POJO is distinct from a JavaBean in that it doesn't follow a convention. Do you mean a JavaBean with setters/getters or a POJO? – Peter Lawrey Jan 21 '11 at 6:58
soory that is java bean – chetan Jan 22 '11 at 11:58

1 Answer

up vote 0 down vote accepted

I'm not 100% sure I understand the question, but this is one way to invoke a setter using reflection.

LoginBean loginBean = new LoginBean();
Method setUserName = loginBean.getClass().getMethod("setUserName", new Class[]{String.class});
setUserName.invoke(loginBean, "myLogin");
share|improve this answer
IT's work fine but for not String value its throw an exception like java.lang.NoSuchMethodException. even Integer.class or Date.class not work. – chetan Jan 21 '11 at 6:41
I done what I want. Thank you as your answer guild me lot. – chetan Jan 21 '11 at 7:38
How to get value from bean's getter method using java.lang.reflect ? – chetan Jan 24 '11 at 5:16
Method getUserName = loginBean.getClass().getMethod("getUserName"); String userName = (String) getUserName.invoke(loginBean); – Bryan Irace Jan 24 '11 at 11:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.