Store JSON output of personality insights in a file using Java

100 Views Asked by At

I downloaded the personality insights java code from github and I made some changes to the code on hub.jazz. My question is how do I get the results from the personality insights saved into either a database or locally?

1

There are 1 best solutions below

0
On

The results from the Personality Insights service are returned in JSON which you can just serialize to a file (or less common, you can return the result as CSV which is even easier - just use a FileWriter to save). Specific code will depend on the JSON library you are using. I'd suggest to just "google" saving a json file in Java and you'll have a bunch of examples and videos.