Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

passing data structures from java to perl

Tags:

java

parsing

perl

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

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

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

like image 891
David B Avatar asked Jul 28 '10 18:07

David B


1 Answers

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

like image 93
mob Avatar answered Sep 28 '22 09:09

mob