http://www.perlmonks.org?node_id=851770


in reply to passing data structures from java to perl

You could serialize the data structure to JSON, and then deserialize it from Perl using JSON.

  • Comment on Re: passing data structures from java to perl

Replies are listed 'Best First'.
Re^2: passing data structures from java to perl
by rastoboy (Monk) on Jul 28, 2010 at 19:48 UTC
    Or XML as well, using XML::Simple from cpan.
Re^2: passing data structures from java to perl
by daverave (Scribe) on Jul 28, 2010 at 20:07 UTC
    Thanks!