Jme file format specification

Hi,

Is it possible to find jme (from jmonkey 2) file format specification?

Just look at the Savable interface and how its implemented.

If you’re trying to read them outside of jME, it won’t work. The format is very complex to read since it uses actual classes and fields from jME/Java.

The best way is to convert those files to XML or some other format through jME and then process them.

Momoko_Fan said:
If you're trying to read them outside of jME, it won't work. The format is very complex to read since it uses actual classes and fields from jME/Java.
The best way is to convert those files to XML or some other format through jME and then process them.


I'm not trying to read them outside of jME. I need this description to my BSc Thesis. I found here more information: http://www.jmonkeyengine.com/doc/com/jme/util/export/binary/BinaryExporter.html and in savable interface. If you have more informations please tell me.

Thanks for replies

Yes that information is accurate.