Android uses one of the Chinese parameter passing methods. android uses Chinese parameters.

Source: Internet
Author: User

Android uses one of the Chinese parameter passing methods. android uses Chinese parameters.

Recently I was working on an app. I used volley to pass the parameter. It was not possible to pass the Chinese parameter in one place (it seems to be the get method). I tried the post method again. I succeeded. record it, useful in the future!

 

 

 

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);

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.