You could serialize the data structure to JSON, and then deserialize it from Perl using JSON.
| [reply] |
Or XML as well, using XML::Simple from cpan.
| [reply] |
If you use JSON or XML, be mindful of your character sets. Java IS UTF-16, which covers ASCII. If you're doing it outside of ASCII, be mindful.
XML has character encoding, to its advantage but takes more work to rig up. | [reply] |
| [reply] |
| [reply] |
Hello,
Depending on your requirements, I'd probably just use Inline::Java and let it take care of the serialization.
regards,
| [reply] |