如何使用volley post paramters

时间:2016-05-03 13:49:50

标签: android utf-8 android-volley

我在android中使用volley库发送帖子请求。我正在使用以下方法发送帖子参数

  

@覆盖                   protected Map getParams(){                       返回postParams;                   }

在这篇文章中,我想发送一个带有utf-8编码的字符串。我使用以下逻辑将其转换为utf-8,但它无效。

byte[] bytes = mCommentBox.getText().toString().trim().getBytes("UTF-8");
String commentBody = new String(bytes, Charset.forName("UTF-8"));

我在post参数中添加了这个commentBody变量,但这种编码无效。

我怎样才能使这个工作,请帮助我。

非常感谢先进。

0 个答案:

没有答案