I have an OBJECT ARRAY, how can i serialize this array? I give you c# code and i have to write in java. Thanks. C#:
byte[] data = JSon.Serialize<object[]>(Parameters);
Please note that i want to serialize an array which has objects.. i realize that is not the exact answer:
ObjectOutputStream out = new ObjectOutputStream(anyOutputStream);
out.writeObject(objectArray);
i have a problem with anyOutputStream, i really don't know what i should place on parameter..