You don't import files in Java. You import classes.
The syntax is as follows:
import com.my.Class;
There is nothing like the #include available in C/C++. If you really want to actually "include" files into your source, you need to rethink your design.