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

In C# we have Type.FullName and Type.Name for getting the name of a type (class in this case) with or without the namespace (package in java-world).

What is the java equivalent to Type.Name?

Clearly there must be a better way than using Class.getName() and strip it of the package name manually.

share|improve this question
I did a quick search on this and was not to impressed by the first results that I found on Google so consider this as a freebie. – Ola Herrdahl Apr 22 '10 at 11:31
3  
Forget Google! The first place to look for answers about the Java standard class library are the Java API docs (aka javadocs): java.sun.com/javase/reference/api.jsp – Stephen C Apr 22 '10 at 12:06

2 Answers

up vote 46 down vote accepted

Class.getSimpleName()

Returns the simple name of the underlying class as given in the source code. Returns an empty string if the underlying class is anonymous.

The simple name of an array is the simple name of the component type with "[]" appended. In particular the simple name of an array whose component type is anonymous is "[]".

It is actually stripping the package information from the name, but this is hidden from you.

share|improve this answer
It also maps the internal name of an anonymous class to an empty String and does stuff with array class names. – Stephen C Apr 22 '10 at 12:03
I didn't know it could return an empty string, and IMHO that's a design flaw. If there is no simple name it should throw an exception. – finnw Apr 22 '10 at 13:20

The following function will working in JDK version > 1.5

public String getSimpleName()
share|improve this answer

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.