Exemplo n.º 1
0
  public static JSONObject tripToJson(aTrip Trip) {

    JSONObject jsonTrip = new JSONObject();
    try {
      jsonTrip.put("TripId", Trip.getTripId());
      jsonTrip.put("TripName", Trip.getTripName());
      jsonTrip.put("UpdateDate", Trip.getUpdateDate());
      jsonTrip.put("CreateDate", Trip.getCreateDate());
      jsonTrip.put("Dirty", Trip.getDirty());
    } catch (JSONException e) {
      e.printStackTrace();
    }
    return jsonTrip;
  }
Exemplo n.º 2
0
 public static ArrayList<aTrip> jsonToTrip(JSONObject json) {
   ArrayList<aTrip> aTripList = new ArrayList<aTrip>();
   JSONArray tripAry;
   try {
     tripAry = json.getJSONArray(TRIP + "Result");
     aTrip trip = new aTrip();
     for (int i = 0; i < tripAry.length(); i++) {
       Object ob = tripAry.get(i);
       trip.setTripId(((JSONObject) ob).getString("TripId"));
       trip.setTripName(((JSONObject) ob).getString("TripName"));
       trip.setUpdateDate(((JSONObject) ob).getString("UpdateDate"));
       trip.setCreateDate(((JSONObject) ob).getString("CreateDate"));
       trip.setDirty(((JSONObject) ob).getString("Dirty"));
       aTripList.add(trip);
     }
   } catch (JSONException e) {
     e.printStackTrace();
   }
   return aTripList;
 }