Bonsoir mes amis(es),

Bon j'aimerais bien récupérer mes images stocker dans ma base de donneés et les afiichées sur une gallery personnalisé , la reception des images sans gallery est reussite avec succées mais lorsque je voudrais les mettre dans une gallery une erreur est survenu sur mon logcat ; voila le code et une capture d'ecrand de logcat:




Nom : log.JPG
Affichages : 93
Taille : 101,8 Ko






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
247
248
249
250
251
252
253
254
255
256
 
 
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
 
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONException;
import org.json.JSONObject;
 
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
import android.widget.Toast;
 
public class MainActivity extends Activity {
 
	private ProgressDialog pDialog;
 
	JSONParser jsonParser = new JSONParser();
 
	private int success = 0;
 
	// url to create new product
 
	// JSON Node names
	private static final String TAG_SUCCESS = "success";
 
	InputStream is;
 
	Bitmap bitmapOrg;
	String result = "";
	Bitmap bitmap;
 
	ArrayList<Bitmap> pics;
	ImageView imageView;
 
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
 
 
 
 
 
		new Reccuperer().execute();
		Gallery ga = (Gallery) findViewById(R.id.Gallery01);
		imageView = (ImageView) findViewById(R.id.ImageView01);
 
 
	}
 
	/*class EnvoiImage extends AsyncTask<String, String, String> {
 
 
		@Override
		protected void onPreExecute() {
			super.onPreExecute();
			pDialog = new ProgressDialog(MainActivity.this);
			pDialog.setMessage("Creating Product..");
			pDialog.setIndeterminate(false);
			pDialog.setCancelable(true);
			pDialog.show();
		}
 
		protected String doInBackground(String... args) {
 
			ByteArrayOutputStream bao = new ByteArrayOutputStream();
 
			bitmapOrg.compress(Bitmap.CompressFormat.JPEG, 90, bao);
 
			byte[] ba = bao.toByteArray();
 
			String ba1 = Base64.encodeBytes(ba);
			int taille = ba1.length();
 
			List<NameValuePair> params = new ArrayList<NameValuePair>();
 
			params.add(new BasicNameValuePair("image", ba1));
 
			JSONObject json = jsonParser.makeHttpRequest(
					"http://10.0.2.2/M3alemApp/envoiimage.php", "POST", params);
 
			// check log cat fro response
			Log.d("Success", json.toString());
 
			// check for success tag
			try {
				success = json.getInt(TAG_SUCCESS);
			} catch (JSONException e) {
				e.printStackTrace();
			}
 
			return null;
		}
 
 
		protected void onPostExecute(String file_url) {
			// dismiss the dialog once done
			pDialog.dismiss();
			runOnUiThread(new Runnable() {
				public void run() {
					if (success == 0) {
						Toast.makeText(MainActivity.this, "Failed",
								Toast.LENGTH_SHORT).show();
 
					} else {
						Toast.makeText(MainActivity.this, "Good",
								Toast.LENGTH_SHORT).show();
					}
 
				}
 
			});
 
		}
 
	}*/
 
	class Reccuperer extends AsyncTask<String, String, String> {
 
		/**
                 * Before starting background thread Show Progress Dialog
                 * */
		@Override
		protected void onPreExecute() {
			super.onPreExecute();
			pDialog = new ProgressDialog(MainActivity.this);
			pDialog.setMessage("Creating Product..");
			pDialog.setIndeterminate(false);
			pDialog.setCancelable(true);
			pDialog.show();
		}
 
		/**
                 * Creating product
                 * */
		protected String doInBackground(String... args) {
 
			String str1 = "";
			ByteArrayOutputStream bao = new ByteArrayOutputStream();
 
			bitmapOrg.compress(Bitmap.CompressFormat.JPEG, 90, bao);
 
			byte[] ba = bao.toByteArray();
 
			String ba1 = Base64.encodeBytes(ba);
			int taille = ba1.length();
			ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
 
			JSONObject json = jsonParser.makeHttpRequest(
					"http://10.0.2.2/M3alemApp/reccupereimage.php", "POST",
					params);
 
			// check log cat fro response
			Log.d("Success", json.toString());
 
			try {
				int success = json.getInt(TAG_SUCCESS);
				if (success == 1) {
 
					str1 = json.getJSONArray("picture").getJSONObject(0)
							.getString("image");
					byte[] ba2 = Base64.decode(str1);
 
					bitmap = BitmapFactory.decodeByteArray(ba2, 0, ba2.length);
 
					// Résultats de la requête
 
				} else {
					// failed to create product
				}
 
			} catch (JSONException e) {
				Log.e("log_tag", "Error parsing data " + e.toString());
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
 
			return null;
		}
 
		/**
                 * Aimg2.setImageBitmap(bitmap);fter completing background task Dismiss
                 * the progress dialog
                 * **/
		protected void onPostExecute(String file_url) {
			// dismiss the dialog once done
			pDialog.dismiss();
			pics.add(bitmap);
 
		}
 
	}
 
	class ImageAdapter extends BaseAdapter {
 
		private Context ctx;
		int imageBackground;
 
		public ImageAdapter(Context c) {
			ctx = c;
			TypedArray ta = obtainStyledAttributes(R.styleable.Gallery1);
			imageBackground = ta.getResourceId(
					R.styleable.Gallery1_android_galleryItemBackground, 1);
			ta.recycle();
		}
 
		@Override
		public int getCount() {
 
			return pics.size();
		}
 
		@Override
		public Object getItem(int arg0) {
 
			return arg0;
		}
 
		@Override
		public long getItemId(int arg0) {
 
			return arg0;
		}
 
		@Override
		public View getView(int arg0, View arg1, ViewGroup arg2) {
			ImageView iv = new ImageView(ctx);
			iv.setImageBitmap(pics.get(arg0));
			iv.setScaleType(ImageView.ScaleType.FIT_XY);
			iv.setLayoutParams(new Gallery.LayoutParams(150, 120));
			iv.setBackgroundResource(imageBackground);
			return iv;
		}
 
	}
}