java里对象转String类型,String类型转对象

在pom.xml文件里先添加依赖


            net.sf.json-lib
            json-lib
            2.4
            jdk15
        

String类型转对象:

dataInfo dif = new dataInfo(); //对象
JSONObject jsonObject= JSONObject.fromObject(str); //str是字符串
dif = (dataInfo)JSONObject.toBean(jsonObject,dataInfo.class);

对象转String类型:

JSONObject.fromObject(dif).toString(); //dif是对象

你可能感兴趣的:(Java)