ArrayList<String> back = new ArrayList<String>(); FileInputSteam a = new FileInputStream(filename); ObjectInputStream b = new ObjectInputStream(a); back = (ArrayList<String>) b.readObject(); a.close(); return back;
but I get the error warning [unchecked] unchecked cast
required ArrayList<String>
found Object
on line 6.
What am I doing wrong?

New Topic/Question
Reply


MultiQuote




|