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
| package com.app.tmjob;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
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.apache.http.message.BasicNameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.app.ActivityGroup;
import android.app.LocalActivityManager;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.LinearLayout;
import android.widget.TextView;
public class DonneesCandidat extends ActivityGroup {
protected static LocalActivityManager mLocalActivityManager;
TextView txt;
TextView id, nom, prenom, dnaiss, email, dipl, exper;
ImageButton modif_dipl, modif_exper;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.donnees);
modif_dipl = (ImageButton)findViewById (R.id.modif_dip);
modif_dipl.setOnClickListener(new View.OnClickListener()
{public void onClick(View v)
{
Intent modif_diplome = new Intent(v.getContext(), ModifDiplome.class);
StringBuffer urlString = new StringBuffer();
replaceContentView("modif_dipl", modif_diplome);
}
});
modif_exper = (ImageButton)findViewById (R.id.modif_exper);
modif_exper.setOnClickListener(new View.OnClickListener()
{public void onClick(View v)
{
Intent modif_exper = new Intent(DonneesCandidat.this, ModifExperience.class);
startActivity (modif_exper);
}
});
LinearLayout rootLayout = new LinearLayout(getApplicationContext());
txt = new TextView(getApplicationContext());
rootLayout.addView(txt);
txt.setText("Connexion...");
txt.setText(getServerData(URL4));
}
protected void replaceContentView(String id, Intent newIntent) {
// TODO Auto-generated method stub
View view = getLocalActivityManager().startActivity(id,newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)) .getDecorView(); this.setContentView(view);
}
public static final String URL4 = "http://10.0.2.2/mesRequetes/donnees.php";
private static final String MY_PREFERENCES = "mespreferences";
private String getServerData(String returnString) {
InputStream is = null;
String result = null;
SharedPreferences sharedPreferences = getSharedPreferences(MY_PREFERENCES, 0);
String usern = sharedPreferences.getString("username", "");
String passw = sharedPreferences.getString("password", "");
Log.i("log_tag","username:"+usern);
Log.i("log_tag","password:"+passw);
ArrayList<NameValuePair> donnees = new ArrayList<NameValuePair>(2);
donnees.add(new BasicNameValuePair("username", usern));
donnees.add(new BasicNameValuePair("password", passw));
// Envoie de la commande http
try{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(URL4);
httppost.setEntity(new UrlEncodedFormEntity(donnees));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.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();
}catch(Exception e){
Log.e("log_tag", "Error converting result " + e.toString());
}
try{
JSONArray jArray = new JSONArray(result);
JSONObject profil=null;
for(int i=0;i<jArray.length();i++){
profil = jArray.getJSONObject(i);
Log.i("log_tag","Nom :"+profil.getString("last_name")+
", Prenom: "+profil.getString("first_name")+
", Idenfifiant: "+profil.getString("id")+
", datenaissance: "+profil.getString("datenaissance")+
", diplomes: "+profil.getString("diplomes")+
", adresse email: "+profil.getString("email_address"));
TextView identifiant = (TextView) findViewById(R.id.tv_id);
identifiant.setText(profil.getString("id"));
TextView nom = (TextView) findViewById(R.id.tv_nom1);
if (profil.has("last_name"))
nom.setText(profil.getString("last_name"));
else
nom.setText("");
TextView prenom = (TextView) findViewById(R.id.tv_prenom2);
if (profil.has("first_name"))
prenom.setText(profil.getString("first_name"));
else
prenom.setText("");
TextView email = (TextView) findViewById(R.id.TV_email2);
if (profil.has("email_address"))
email.setText(profil.getString("email_address"));
else
prenom.setText("");
TextView datenaiss = (TextView) findViewById(R.id.tv_Dnaiss2);
if (profil.getString("datenaissance")!= "null")
datenaiss.setText(format_d(profil.getString("datenaissance")));
else
datenaiss.setText("");
TextView diplome = (TextView) findViewById(R.id.tv_Diplome2);
if (profil.has("diplomes"))
diplome.setText(profil.getString("diplomes"));
else
diplome.setText("");
TextView experience = (TextView) findViewById(R.id.edit_experience);
if (profil.getString("experiences")!= "null")
experience.setText(profil.getString("experiences"));
else
experience.setText("");
// Résultats de la requête
returnString += "" + jArray.getJSONObject(i);
SharedPreferences settings = getSharedPreferences(MY_PREFERENCES, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("id", identifiant.getText().toString());
editor.putString("diplomes", diplome.getText().toString());
editor.putString("experiences", experience.getText().toString());
editor.commit();
};
}catch(JSONException e){
Log.e("log_tag", "Error parsing data " + e.toString());
}
return returnString;
}
public static StringBuilder format_d(final String s) {
String aaaa = s.substring(0, 4);
String mm = s.substring(5, 7);
String dd = s.substring(8, 10);
return new StringBuilder(dd)
.append("/")
.append(mm)
.append("/")
.append(aaaa);
}
} |
Partager