Instead of copying and pasting the same import statements in every single class file is there a way to put all of the imports you need on just one file and then call that file for example instead of pasting this every time:
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.security.GeneralSecurityException;
import java.util.Collections;
import java.util.List;
could you somehow put those statements in just one file and then import that instead ie.
import My_Imports;