reflection
Get package name
This is an example of how to get the package name of a class. Getting the package name of a class implies that you should:
- Create a new object of the class.
- Use
getClass()API method ofObject for the class to get the runtime class of this object. The returned Class object is the object that is locked by static synchronized methods of the represented class. - Call
getPackage()API method ofClass to get thePackage for this class. The class loader of this class is used to find the package. If the class was loaded by the bootstrap class loader the set of packages loaded from CLASSPATH is searched to find the package of the class. - Use
getName()API method ofPackage to get the name of the package.
Let’s take a look at the code snippet that follows:
package com.javacodegeeks.snippets.core;public class GetPackageName {public static void main(String[] args) { // Create new object of this classGetPackageName o = new GetPackageName(); // Get package name and print itPackage pack = o.getClass().getPackage();String packageName = pack.getName();System.out.println("Package = " + packageName);}}Output:
Package = com.javacodegeeks.snippets.core
This was an example of how to get the package name of a class in Java.
Do you want to know how to develop your skillset to become aJava Rockstar?
Subscribe to our newsletter to start Rockingright now!
To get you started we give you our best selling eBooks forFREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to theTerms andPrivacy Policy

Thank you!
We will contact you soon.
Ilias Tsagklis
Ilias is a software developer turned online entrepreneur. He is co-founder and Executive Editor atJava Code Geeks.



