JSONObject.fromObject(XXX);报错
错误原因:ali这两个包导致
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
解决办法导入:
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
错误原因:ali这两个包导致
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
解决办法导入:
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;