|
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.
01 | package com.bethecoder.java.reflection; |
03 | import java.lang.reflect.Field; |
05 | public class GetPrivateFields { |
07 | public static void main(String[] args) throws Exception { |
08 | User user = new User( "Raj" , "raj@bethecoder.com" ); |
10 | Class<?> entityClazz = user.getClass(); |
11 | Field field = entityClazz.getDeclaredField( "email" ); |
12 | System.out.println(field.getType()); |
15 | private static class User { |
19 | public User(String name, String email) { |
It gives the following output,
class java.lang.String
|
|