Passing data structures from java to perl

I would like to pass some data structures from java to perl.

In perl, it should be a hash, where the keys are strings, and each value is either a string, or a hash, or a hash of the hashes.

Is there a way to flush data from java that can be easily parsed by perl?

+6
java perl parsing
source share
1 answer

JSON and YAML are serialization standards that have both Java and Perl implementations.

+9
source share

All Articles