Home Java Java-get-example Get Class Name



Get Class Name
Posted on: October 23, 2008 at 12:00 AM
In the example given below we will learn how to get name of the particular class with package name. getName() method returns fully qualified name of the particular class in string format.

Get Class Name

     

In the example given below we will learn how to get name of the particular class with package name. getName() method returns fully qualified name of the particular class in string format.

 

 

 

Here is the code:

import java.util.Calendar;
import java.math.BigDecimal;
 
public class GetClassName {
  public static void main(String[] args) {
  Class cl = String.class;
  System.out.println("Class Name: " + cl.getName());

  cl = Object.class;
  System.out.println("Class Name: " + cl.getName());

  cl = Calendar.class;
  System.out.println("Class Name: " + cl.getName());
 
  cl = BigDecimal.class;
  System.out.println("Class Name: " + cl.getName());
  }
}

 

Output will be displayed as:

 

Download Source Code

 

Related Tags for Get Class Name:
cstringclassormformmethodformatgetnamereturnpackageifforieexamplewithtolearnexameareilitliulartinrmpartasmpartrpackclfullageicumehowackxaxampsurnatpackllivmplqualifiedeaarstrrtssriringthbelostlifpleplo


More Tutorials from this section

Ask Questions?    Discuss: Get Class Name  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.