tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Articles > Misc > How to get value of Private Fields using Reflection

How to get value of Private Fields using Reflection

Author: Venkata Sudhakar

The below example shows how to dyncamically retrive the value of a private Field.

01package com.bethecoder.java.reflection;
02 
03import java.lang.reflect.Field;
04 
05public class GetPrivateFields {
06 
07    public static void main(String[] args) throws Exception {
08        User user = new User("Raj", "raj@bethecoder.com");
09         
10        Class<?> entityClazz = user.getClass();
11        Field field = entityClazz.getDeclaredField("email");
12        field.setAccessible(true);
13        System.out.println(field.get(user));
14    }
15     
16    private static class User {
17        private String name;
18        private String email;
19 
20        public User(String name, String email) {
21            super();
22            this.name = name;
23            this.email = email;
24        }
25    }
26 
27}

It gives the following output,

raj@bethecoder.com

 
  


  
bl  br