2
How do I read a JSON (jsonl) file through the eclipse in java? Need some package?
2
How do I read a JSON (jsonl) file through the eclipse in java? Need some package?
2
There are several libraries for this purpose, but I recommend GSON
Example of JSON for JAVA:
Gson json = new Gson();
String string_json= "{\"ID\":\"9\",\"pais\":\"Korea\"}";
Info info= json.fromJson(string_json, Info.class);
Tutorial GSON - Link provided by the official repository readme
Browser other questions tagged java json eclipse
You are not signed in. Login or sign up in order to post.
I don’t work with java, but with a little research you can know the answer to your question.
– lazyFox
This responds to JSON Lines?
– Don't Panic
I was unaware of the site. But yes, I think there is no disagreement with the standard, but correct it if I’m wrong :)
– lazyFox