I have a Java lib that I am pulling some data out of.
It out puts a 3D array. However I can not do anything with it.
[[D[]@5615a6e0
is the response I get. I have tried mapping it:
{ |arr| arr.map { |arr| arr.to_a } }
but i get nothing out, What is the best way to parse this java array for ruby use?
putsan array you'll get the type signature--it's not going to magically format anything for you. If you want it as JSON, convert it to JSON.