How can I cast a JSONObject to a custom Java class?

后端 未结 5 760
深忆病人
深忆病人 2021-02-12 15:42

In Java (using json-simple) I have successfully parsed a JSON string which was created in JavaScript using JSON.stringify. It looks like this:

{\"teq\":14567,\"         


        
5条回答
  •  无人及你
    2021-02-12 16:16

    There are lot of libraries that does this. This is my suggestion. Here you can find the library

    import com.google.gson.Gson; 
    

    and then do,

    Gson gson = new Gson();  
    Student student = gson.fromJson(jsonStringGoesHere, Student.class);  
    

    Maven Dependency

        
            com.google.code.gson
            gson
            2.2.4
        
    

提交回复
热议问题