Packages in Java

  • Last updated Apr 25, 2024

A package in Java is used to group related Java classes and interfaces. In simple terms, a package is a folder in a filesystem directory. It helps to separate one class from another and helps to prevent file conflicts by providing different namespace for every file it contains.

Benefits of using Packages
  1. Naming Conflicts: With packages, you can avoid naming conflicts that may arise when different classes or libraries use similar names. Each package acts as a namespace, preventing naming clashes and ensuring a clean codebase.
  2. Modularity: Packages promote modularity, allowing developers to break down a large codebase into smaller, more manageable components. This modularity enhances code readability and makes it easier to maintain and update.
  3. Access Control: Packages provide access control by defining visibility boundaries. Classes and methods marked with the public, protected, or default (package-private) access modifiers determine their visibility within or outside the package.
Declaring Packages

To declare a package in Java, use the package keyword followed by the package name. This declaration is typically the first statement in a Java source file. For example:

package com.example.myapp;
Package Structure

Java packages are organized hierarchically. The package name reflects the directory structure in which the source files are stored. For instance, the package name com.example.myapp corresponds to the directory structure com/example/myapp/ on the file system.

Importing Packages

The import statement is used to bring classes, interfaces, or entire packages into scope. This statement informs the compiler about the location of the referenced classes or packages. For example:

import java.util.ArrayList;
import java.util.List;
Importing Entire Packages

An entire package can be imported using the "import" keyword followed by the package name and an asterisk (*) at the end. For example:

import java.util.*;
import com.mypackage.name.*;
Types of Packages

There are two types of packages in Java:

  1. Java Built-in Packages: These are packages included in the Java development libraries. These packages contain pre-written Java classes and interfaces. Here is an example of importing the Java built-in List and ArrayList classes from the java.util package:
  2. package com.mydomain.app;
    
    // importing Java built-in packages from java.util package.
    import java.util.List;
    import java.util.ArrayList;
    
    public class MyExample {
    
       public static void main(String[] args) {
          List list = new ArrayList<>();
          list.add("Nokia");
          list.add("Samsung");
          list.add("Iphone");
          System.out.println(list);
        }
    
    }
  3. User-defined Packages: These are your own packages that you can create to group your classes and interfaces. Here, the first line of the code provides an example of a user-defined package:
  4. package com.mydomain.student; // This is a user-defined package name
    
    public class Student {
        private String name;
        private String email;
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public String getEmail() {
            return email;
        }
    
        public void setEmail(String email) {
            this.email = email;
        }
    
    }

    Here is an example of importing the above Student class into another Java class from a different package:

    package com.mydomain.teacher;
    
    //importing Student class from another package
    import com.mydomain.student.Student;
    
    public class Teacher {
    
        public static void main(String args []) {
            Student student = new Student();
            student.setName("Rose");
            student.setEmail("rose@mydomain.com");
    
            System.out.println("The student name is " + student.getName() +
            " and the email is " +student.getEmail());
        }
    
    }
Best Practices for Package Naming
  1. Reverse Domain Name Convention:
  2. Follow the reverse domain name convention for package naming to ensure uniqueness. For instance, if your domain is example.com, your packages should start with com.example.

  3. Package Organization:
  4. Organize packages in a logical and consistent manner. Group related classes and interfaces within the same package to enhance code maintainability.

  5. Avoid Single-Class Packages:
  6. Include multiple related classes within a single package. This helps in avoiding an excessive number of small, unrelated packages.