Advertisement
minafaw3

jsonParser dogville

Oct 15th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.32 KB | None | 0 0
  1. package com.tech4life.dogville.Controller;
  2.  
  3. import android.util.Log;
  4.  
  5. import com.tech4life.dogville.Controller.Constants.AppConstants;
  6.  
  7. import org.apache.http.HttpResponse;
  8. import org.apache.http.StatusLine;
  9. import org.apache.http.client.methods.HttpPost;
  10. import org.apache.http.entity.StringEntity;
  11. import org.apache.http.impl.client.DefaultHttpClient;
  12. import org.apache.http.util.EntityUtils;
  13. import org.json.JSONArray;
  14. import org.json.JSONException;
  15. import org.json.JSONObject;
  16. import java.io.BufferedReader;
  17. import java.io.InputStream;
  18. import java.io.InputStreamReader;
  19. import java.net.HttpURLConnection;
  20. import java.net.URI;
  21. import java.net.URL;
  22.  
  23. /**
  24. * @author Mina
  25. * @version 1.0
  26. */
  27.  
  28. class JSonParser {
  29.  
  30. private String ERROR_MESSAGE = "Error parsing data";
  31. final String TAG = "JSONParser";
  32. final String GET = "GET";
  33. static JSONObject jObj = null;
  34. static JSONArray jArray = null;
  35. String data = "";
  36.  
  37. /**
  38. * getJSONFromUrl
  39. * get JSONObject with required data from url
  40. *
  41. * @return JSONObject
  42. * @author Mina
  43. */
  44.  
  45. public JSONObject getJSONFromUrl(String urlString) throws JSONException {
  46. try {
  47. MainControl.CONNECT = true;
  48. if (MainControl.CONNECT) {
  49. URL url = new URL(urlString);
  50.  
  51. HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  52. conn.setReadTimeout(10000 /* milliseconds */);
  53. conn.setConnectTimeout(10000 /* milliseconds */);
  54. conn.setRequestMethod(GET);
  55. conn.setDoInput(true);
  56.  
  57. // Starts the query
  58. conn.connect();
  59. InputStream stream = conn.getInputStream();
  60. data = convertStreamToString(stream);
  61. stream.close();
  62. } else {
  63. if (urlString.equals(AppConstants.MEAL_URL)) {
  64. // path = UIConstants.MEALS_PATH;
  65. // data = new Scanner(new File(path), "UTF-8").next();
  66. jObj = new JSONObject(AppConstants.PRODUCTS_JSON);
  67. }
  68.  
  69. }
  70. try {
  71. jObj = new JSONObject(data);
  72. } catch (JSONException e) {
  73. Log.e(TAG, ERROR_MESSAGE + e.toString());
  74. }
  75. } catch (Exception e) {
  76. Log.e(TAG, ERROR_MESSAGE, e);
  77.  
  78. }
  79.  
  80. return jObj;
  81. }
  82.  
  83. /**
  84. * convertStreamToString
  85. * convert InputStream to a string
  86. *
  87. * @param
  88. * @return String
  89. * @author Mina
  90. */
  91.  
  92. public static String convertStreamToString(InputStream is) {
  93. BufferedReader reader = new BufferedReader(new InputStreamReader(is));
  94. StringBuilder sb = new StringBuilder();
  95. String line = null;
  96. try {
  97. while ((line = reader.readLine()) != null) {
  98. sb.append(line + "\n");
  99. }
  100. } catch (Exception e) {
  101. e.printStackTrace();
  102.  
  103. } finally {
  104. try {
  105. is.close();
  106. } catch (Exception e) {
  107. e.printStackTrace();
  108. }
  109. }
  110. return sb.toString();
  111. }
  112.  
  113. public JSONArray getJSONArrayFromUrl(String urlString) throws JSONException {
  114. try {
  115. MainControl.CONNECT = true;
  116. if (MainControl.CONNECT) {
  117. URL url = new URL(urlString);
  118.  
  119. HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  120. conn.setReadTimeout(10000 /* milliseconds */);
  121. conn.setConnectTimeout(10000 /* milliseconds */);
  122. conn.setRequestMethod(GET);
  123. conn.setDoInput(true);
  124. // Starts the query
  125. conn.connect();
  126. InputStream stream = conn.getInputStream();
  127. data = convertStreamToString(stream);
  128. stream.close();
  129. } else {
  130. if (urlString.equals(AppConstants.MEAL_URL)) {
  131. // path = UIConstants.MEALS_PATH;
  132. // data = new Scanner(new File(path), "UTF-8").next();
  133. jObj = new JSONObject(AppConstants.PRODUCTS_JSON);
  134. }
  135. // else if (urlString.equals(UIConstants.DISEASES_URL)) {
  136. //// path = UIConstants.DISEASES_PATH;
  137. //// data = new Scanner(new File(path), "UTF-8").next();
  138. // jObj = new JSONObject(UIConstants.DISEASES_JSON);
  139. // } else if (urlString.equals(UIConstants.DOCTOR_URL)) {
  140. //// path = UIConstants.DOCTORS_PATH;
  141. //// data = new Scanner(new File(path), "UTF-8").next();
  142. // jObj = new JSONObject(UIConstants.DOCTORS_JSON);
  143. // }
  144. }
  145. try {
  146. jArray = new JSONArray(data);
  147. } catch (JSONException e) {
  148. Log.e(TAG, ERROR_MESSAGE + e.toString());
  149. }
  150. } catch (Exception e) {
  151. Log.e(TAG, ERROR_MESSAGE, e);
  152.  
  153. }
  154.  
  155. return jArray;
  156. }
  157.  
  158. public JSONObject requestService(String url,JSONObject jsonRequest) {
  159. try {
  160. String responseText = "";
  161. MainControl.CONNECT = true;
  162. if (MainControl.CONNECT) {
  163.  
  164. DefaultHttpClient httpClient = new DefaultHttpClient();
  165. HttpPost httpPost = new HttpPost();
  166. StringEntity entity = new StringEntity(jsonRequest.toString(),
  167. "UTF-8");
  168. URI urlstring = new URI(url);
  169. httpPost.setEntity(entity);
  170. httpPost.setHeader("content-type", "application/json");
  171. httpPost.setURI(urlstring);
  172. HttpResponse httpResponse = httpClient.execute(httpPost);
  173. StatusLine sl = httpResponse.getStatusLine();
  174. responseText = EntityUtils.toString(httpResponse.getEntity());
  175. } else {
  176.  
  177. }
  178. try {
  179. jObj = new JSONObject(responseText);
  180. } catch (JSONException e) {
  181. Log.e(TAG, ERROR_MESSAGE + e.toString());
  182. }
  183. } catch (Exception e) {
  184. Log.e(TAG, ERROR_MESSAGE, e);
  185. }
  186. return jObj;
  187. }
  188. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement