I am getting this runtime error:
Exception in thread "main" java.lang.ClassCastException: Employee cannot be cast to [LEmployee;
It is coming from this line of code, where I am casting the file contents to Employee[]
Employee[] EmpArray;
EmpArray = (Employee[]) objectIn.readObject();
What is confusing me is the "[L" in the error. I have no idea where that came from.