Bonjour,
J'ai crée une application qui permet de récupérer des données à partir de google api places comme le nom , l'adresse ...
Mon problème est l'affichage des caractères accentuées .
Voila mon code de connexion au serveur :
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
package com.example.projet_fin_etude;
 
import java.io.BufferedReader;
 
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
 
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONException;
import org.json.JSONObject;
 
import android.util.Log;
 
public class JsonParser {
	static InputStream is = null;
 
	static JSONObject jObj = null;
 
	static String json = "";
 
 
	// Constructeur de notre classe
	public JsonParser() {
 
	}
 
	public JSONObject getJSONFromUrl(String url) {
 
	// début de la requête http
	try {
 
	// faire appel à defaultHttpClient
	DefaultHttpClient httpClient = new DefaultHttpClient();
 
	HttpPost httpPost = new HttpPost(url);
 
	HttpResponse httpResponse = httpClient.execute(httpPost);
 
	HttpEntity httpEntity = httpResponse.getEntity();
 
	is = httpEntity.getContent();
 
	} catch (UnsupportedEncodingException e) {
 
	e.printStackTrace();
 
	} catch (ClientProtocolException e) {
 
	e.printStackTrace();
 
	} catch (IOException e) {
 
	e.printStackTrace();
 
	}
 
	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();
 
	json = sb.toString();
 
	} catch (Exception e) {
 
	Log.e("Buffer Error", "Error converting result " + e.toString());
 
	}
 
	// convertir le résultat qui est sous format d'un String en un JSONObject
	try {
 
	jObj = new JSONObject(json);
 
	} catch (JSONException e) {
 
	Log.e("JSON Parser", "Error parsing data " + e.toString());
 
	}
 
	// retourner un JSONObject
	return jObj;
 
	}
}

Aidez moi s'il vous plait et merci d'avance.