コード例 #1
0
ファイル: Event_Profile.java プロジェクト: Sourabh16/Festival
    @Override
    protected String doInBackground(String... params) {

      try {
        JSONObject jsonObject = api.EventAttand(params[0], params[1]);
        JSONParser jsonParser = new JSONParser();
        response = jsonParser.parseStringResponse(jsonObject);

      } catch (Exception e) {
        e.printStackTrace();
      }

      return response;
    }