vote up 0 vote down star

Jython is great for creating custom data structures on need basis, but how to store their instances? Apparently it's possible to do it via java.io.Serializable, but ObjectStreams are not human readable; I would prefer XML.

I naïvely tried XStream to serialize a simple object created in Jython and translated to Java with PyObject's __tojava__ method, but the result was, expectedly, pretty much gibberish because of XStream's heavy use of reflection (it finds all Jython's internals) - and deserialization doesn't work (maybe because of Jython's dynamically loaded proxy classes or some other implementation details that I'm really not familiar with.)

Is there anything like XStream for Jython objects - perhaps a Jython library?

flag

79% accept rate
1  
If it includes the useful bits as well, perhaps just applying a filter would work. XStream is very configurable although half of it seems like magic until you kick it a few times. – pst Oct 24 at 6:11
Yes, there are useful bits as well. But I'm pretty sure that each data structure would require a slightly different filter, so there should also be some clever way to construct filters on the fly. – Joonas Pulakka Oct 24 at 6:31

1 Answer

vote up 0 vote down check

Apparently Jython is not that ideal for on need data structure creation although it's great for custom data processing. I ended up using DynaBeans from Apache BeanUtils to create the data structures. They play with XStream and Jython just fine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.