I want to use json result to another activity.Here following code I want to use intents to pass the data second activity but I am not able to intents class.How can i use intent to pass the value
if (status == 200) {
HttpEntity entity = response.getEntity();
String data = EntityUtils.toString(entity);
System.out.println(data);
System.out.println("fffff");
JSONObject jsono = new JSONObject(data);
JSONArray jarray = jsono.getJSONArray("articles");
System.out.println(jarray);
for (int i = 0; i < jarray.length(); i++) {
JSONObject object = jarray.getJSONObject(i);
Dashboard_Model_File actor = new Dashboard_Model_File();
actor.setTitle(object.getString("category_name"));
actor.setDescription(object.getString("bookmark_title"));
actor.setUrl(object.getString("bookmark_website"));
actor.setBookmark_id(object.getString("bookmark_id"));
actor.setAlternate_id(object.getString("alternate_id"));
actor.setBookmark_file(object.getString("bookmark_file"));
actor.setMode(object.getString("mode"));
actor.setImage(object.getString("bookmark_preview_image"));
actorsList.add(actor);
}
return true;
}