java import class from another file code example
Example 1: how to import class from another file in java
import package.myclass;
//But since it's the default package and same, you just create a new instance like:
elf ob = new elf();
Example 2: java file package import
import java.io.File;
Example 3: import classes from another project java
Right Click > Project.
Click Project Properties.
Click Java Build Path.
Click the Projects Tab.
Click the Add Button.
Select the Project.
Click OK.