Creating GSON Object

前端 未结 2 499
长情又很酷
长情又很酷 2021-02-01 01:28

How do I create a json Object using Google Gson? The following code creates a json object which looks like {\"name\":\"john\"}

JsonObject jsonObject         


        
2条回答
  •  遇见更好的自我
    2021-02-01 01:58

    Figured it out how to do it correctly using Java Objects.

    Creator creator = new Creator("John");
    new Gson().toJson(creator);
    

    Implementation of Creator java class.

    public class Creator {
    
        protected String name;
    
        protected HashMap publisher = new HashMap();
    
        public Creator(String name){
                publisher.put("name", name);
        }
    }
    

提交回复
热议问题