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

How to get Class Type of Private Fields using Reflection

Author: Venkata Sudhakar

The below example shows how to dyncamically retrive the Class type 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        System.out.println(field.getType());
13    }
14     
15    private static class User {
16        private String name;
17        private String email;
18 
19        public User(String name, String email) {
20            super();
21            this.name = name;
22            this.email = email;
23        }
24    }
25 
26}

It gives the following output,

class java.lang.String

 
  


  
bl  br