Bonjour,

Je travaille sur un application qui dois récupérer des valeurs dans un BDD MySQL, pour l'instant en local. Et faire afficher les valeurs dans une ListView. Donc j'ai un Adapter Personnaliser car je dois envoyer deux types de données.

Le problème est qu'il m'est impossible de lancer mon application, ça vient des fonctions RecupDate() et RecupInfo().

Voila mon MainActivity.java
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package com.example.source.test_pushbot;
 
import android.app.Activity;
import android.net.ParseException;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
 
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
 
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
 
public class MainActivity extends Activity {
 
    private ListView mainListView ;
    private ListView mainTextListView;
    private ArrayAdapter<String> listTextAdapter ;
    private ArrayAdapter<String> listDateAdapter ;
    private TextView rowDateView;
    private TextView rowTextView;
 
    static boolean active = false;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        // Find the ListView resource.
        mainListView = (ListView) findViewById( R.id.mainListView );
        //mainTextListView = (ListView) findViewById(R.id.mainListView);
 
        onMainListView();
    }
 
    public void onMainListView(){
 
        rowDateView = (TextView) findViewById(R.id.rowDateView);
        rowTextView = (TextView) findViewById(R.id.rowTextView);
 
 
        ArrayList<String> dateList = new ArrayList<String>();
        ArrayList<String> infoList = new ArrayList<String>();
 
 
        dateList = RecupDate();
        infoList = RecupInfo();
 
        // Create ArrayAdapter using the planet list.
        AdapterListPerso adapter = new AdapterListPerso(getApplicationContext(), dateList, infoList);
        // On dit à la ListView de se remplir via cet adapter
        mainListView.setAdapter(adapter);
    }
 
    public ArrayList<String> RecupDate(){
 
        String result = null;
 
        InputStream is = null;
        JSONObject json_data = null;
 
        ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
        ArrayList donnee = new ArrayList();
 
        try{
            //Commande HttpClient
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("http://192.168.2.246/Test_Android_Project/RecupDate.php");
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse reponse = httpclient.execute(httppost);
            HttpEntity entity = reponse.getEntity();
            is = entity.getContent();
        }
        catch(Exception e){
            Log.i("taghttppost",""+e.toString());
            Toast.makeText(getBaseContext(), e.toString(), Toast.LENGTH_LONG).show();
        }
 
        //conversion de la réponse en chaine de caractère
        try
        {
            BufferedReader reader = new BufferedReader(new InputStreamReader(is,"UTF-8"));
 
            StringBuilder sb  = new StringBuilder();
 
            String line = null;
 
            while ((line = reader.readLine()) != null)
            {
                sb.append(line + "\n");
            }
 
            is.close();
 
            result = sb.toString();
        }
        catch(Exception e)
        {
            Log.i("tagconvertstr",""+e.toString());
        }
 
        //recuperation des donnees json
        try{
            JSONArray jArray = new JSONArray(result);
 
            for(int i=0;i<jArray.length();i++)
            {
 
                json_data = jArray.getJSONObject(i);
                donnee.add(json_data.getString("date"));
            }
        }
        catch(JSONException e){
            Log.i("tagjsonexp",""+e.toString());
        } catch (ParseException e) {
            Log.i("tagjsonpars",""+e.toString());
        }
 
        return donnee;
    }
 
    public ArrayList<String> RecupInfo(){
 
        String result = null;
 
        InputStream is = null;
        JSONObject json_data = null;
 
        ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
        ArrayList donnee = new ArrayList();
 
        try{
            //Commande HttpClient
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("http://192.168.2.246/Test_Android_Project/RecupInfo.php");
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse reponse = httpclient.execute(httppost);
            HttpEntity entity = reponse.getEntity();
            is = entity.getContent();
        }
        catch(Exception e){
            Log.i("taghttppost",""+e.toString());
            Toast.makeText(getBaseContext(), e.toString(), Toast.LENGTH_LONG).show();
        }
 
        //conversion de la réponse en chaine de caractère
        try
        {
            BufferedReader reader = new BufferedReader(new InputStreamReader(is,"UTF-8"));
 
            StringBuilder sb  = new StringBuilder();
 
            String line = null;
 
            while ((line = reader.readLine()) != null)
            {
                sb.append(line + "\n");
            }
 
            is.close();
 
            result = sb.toString();
        }
        catch(Exception e)
        {
            Log.i("tagconvertstr",""+e.toString());
        }
 
        //recuperation des donnees json
        try{
            JSONArray jArray = new JSONArray(result);
 
            for(int i=0;i<jArray.length();i++)
            {
 
                json_data = jArray.getJSONObject(i);
                donnee.add(json_data.getString("messages"));
 
 
            }
 
        }
        catch(JSONException e){
            Log.i("tagjsonexp",""+e.toString());
        } catch (ParseException e) {
            Log.i("tagjsonpars",""+e.toString());
        }
 
        return donnee;
    }
 
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }
 
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        switch(item.getItemId()){
            case R.id.action_settings:
                // Comportement du bouton "Paramètres"
                return true;
            case R.id.menu_refresh:
                // Comportement du bouton "Rafraichir"
                return true;
            default:
                return super.onOptionsItemSelected(item);
        }
    }
 
    @Override
    public void onStart() {
        super.onStart();
        active = true;
    }
 
    @Override
    public void onStop() {
        super.onStop();
        active = false;
    }
    public static boolean isActive(){
        return active;
    }
}
Quelqu'un saurait-il d'où peut venir le problème ?

Merci d'avance pour votre aide.