JSON and Object conversions

Source: Internet
Author: User

// <summary>
/// Restore the JSON string to an object
// </summary>
// <typeparam name= "T" > Object type </typeparam>
/// <param name= "Szjson" >json string </param>
/// <returns> object entities </returns>
Public T parseformjson<t> (string szjson)
{
T obj = activator.createinstance<t> ();
using (MemoryStream ms = new MemoryStream (Encoding.UTF8.GetBytes (Szjson)))
{
DataContractJsonSerializer DCJ = new DataContractJsonSerializer (typeof (T));
return (T) DCJ. ReadObject (MS);
}
}

  /**

     * 将实体POJO转化为JSON

     * @param obj

     * @return

     * @throws JSONException

     * @throws IOException

     */

    publicstatic<T> JSONObject objectToJson(T obj) throwsJSONException, IOException {

        ObjectMapper mapper = newObjectMapper(); 

        // Convert object to JSON string 

        String jsonStr = "";

          jsonStr =  mapper.writeValueAsString(obj);            

        returnnewJSONObject(jsonStr);

    }

    

  

  

JSON and Object conversions

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.