如何将pojo的所有结果添加到json对象。
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
while (srs.next()) {
j obj = new pojo();
ONObject json_o = new JSONObject();
j.setFullname(srs.getString("full_name"));
j.setEmailid(srs.getString("email_id"));
// what to do here ?
}