Recently in doing the app, with the volley, there is a place to pass Chinese parameters not (seemingly is get way), I tried the next post way, success, record, later useful!
Requestqueue requestqueue = Volley.newrequestqueue (Getapplicationcontext ());
Stringrequest stringrequest=new stringrequest (Request.Method.POST, "http:/***", New response.listener<string> () {
@Override
public void Onresponse (String s) {
Toast.maketext (Commitapprasialactivity.this, "", Toast.length_short). Show ();
Repairinfor rep=new repairinfor ();
Rep.setrep_appraisal (Edit_appraisal.gettext (). toString ());
RepairListActivity.instance.finish ();
Rep_ItemActivity.instance.finish ();
StartActivity (New Intent (Commitapprasialactivity.this,repairlistactivity.class));
Finish ();
}
}, New Response.errorlistener () {
@Override
public void Onerrorresponse (Volleyerror volleyerror) {
}
}){
Protected map<string,string> Getparams () {
Map<string,string> map=new hashmap<string, string> ();
Map.put ("",);
Map.put ("",);
return map;
}
};
Requestqueue.add (stringrequest);
Android Pass Chinese parameter method (one)