I have a Java application who create preference files with the ObjectInputStream class, ex :
FileOutputStream file = new FileOutputStream(path);
ObjectOutputStream oos = new ObjectOutputStream(file);
oos.writeObject(object);
oos.flush();
oos.close();
This method create files like : Click here
Now I want to properly read this file in a c# application, like you do it in java with for example :
ObjectInputStream = new ObjectInputStream(filestream);
CalendarLine lineSaved = (CalendarLine) ois.readObject();
Most of the solutions I found were with xml Serialize, but my java application create .ser files.
Thank for your help :)
NB : I Cannot change the java code to make other files.
PS : Sorry for my bad english ^^