Is there an already available library that can convert a JSON string (most likely more than 1 data string) to a CSV file.
I searched a lot for any such libraries in Scala, but couldn't find anything.
I need to search for data from a database source, the result set is in JSON format and convert it to CSV.
Before I did, I converted JSON to the appropriate Seq [case-class] and tried to use libraries such as:
But this is not very useful if in the case of the case class, which contains deep hierarchies.
Any suggestions
source
share