Gson gson = new Gson(); // 1. Java object to JSON file gson.toJson(obj, new FileWriter("C:fileName.json")); // 2. Java object to JSON string String json = gson.toJson(obj);