Вы здесь:

Ссылки

 

Save JSON to file: https://www.baeldung.com/gson-save-file

gson.toJson(123.45, new FileWriter(filePath));

User user = new User(1, "Tom Smith", "American");
gson.toJson(user, new FileWriter(filePath));