I am trying to read in an array from an ObjectInputStream in Java. I can not find documentation on how to do this. I assume this is readObject (), but this does not work.
out.write(Object) out.write(Object) out.write(boolean[])
... to the servlet ...
Object one = in.readObject(); Object two = in.readObject(); boolean[] thr = (boolean[])in.readObject();
Is this the right one, or am I doing it the wrong way? If he corrects then any ideas on why this might not please?
source share