1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
   | public class BDDAlarm extends Activity {
    /** Called when the activity is first created. */
    TextView txt;  
 
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        LinearLayout rootLayout = new LinearLayout(getApplicationContext()); 
        txt = new TextView(getApplicationContext());    
        rootLayout.addView(txt);    
        setContentView(rootLayout);     
        txt.setText("Connexion à la bdd");    
        txt.setText(getServerData(strURL));   
    }  
   public static final String strURL = "http://10.0.2.2:8080/mesRequestes/Alarm.php";      
   private String getServerData(String returnString) {  
       InputStream is = null;  
       String result = "";  
       ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();  
       nameValuePairs.add(new BasicNameValuePair("alarm",""));   
       try{  
           HttpClient httpclient = new DefaultHttpClient();
           HttpPost httppost = new HttpPost(strURL);  
           httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));  
           HttpResponse response = httpclient.execute(httppost);    
           is = response.getEntity().getContent(); 
 
       }catch(Exception e){  
           Log.e("log_tag", "Error in http connection " + e.toString());  
       }  
 
       try{  
       	BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8); 
       	StringBuilder sb = new StringBuilder();  
           String line = null;  
           while ((line = reader.readLine()) != null) {  
               sb.append(line + "\n");  
           }  
           is.close();  
           result=sb.toString();  
           Log.i("result", result);
       }catch(Exception e){  
           Log.e("log_tag", "Error converting result " + e.toString());  
       }  
       try{  
          JSONArray jArray = new JSONArray(result);  
           for(int i=0;i<jArray.length();i++){  
              JSONObject json_data = jArray.getJSONObject(i);  
              // Affichage ID_ville et Nom_ville dans le LogCat  
               Log.i("log_tag","ID_ALARM: "+json_data.getInt("ID_ALARM")+  
                       ", ID_OBJECT: "+json_data.getInt("ID_OBJECT"));  
               returnString += "\n\t" + jArray.getJSONObject(i);   
           }  
       }catch(JSONException e){  
           Log.e("log_tag", "Error parsing data " + e.toString());  
      }  
      return returnString;   
   }  
} | 
Partager