Class Definition Java Tutorial

'import' statements must come after the package statement but before the class declaration.
The import keyword can appear multiple times in a class.

import java.io.File;
import java.util.List;
public class Demo {
    //...
}