意外的响应代码400

时间:2018-02-15 12:08:10

标签: android-studio android-volley

我有一个包含UTF-8字符的字符串URL,当我使用Volley库时出现此错误:

  

http://192.168.1.103/android_login_api/search.php?Method=rate&CAT=مهندسیعمران& KEY =ایمنیترافیک

的意外回复代码400

我认为这可能无法阅读完整版,因此我不会收到onResponse的任何回复。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我最终设法解决了我的问题。分享它,主要问题是由String URL创建的距离。因此,通过替换订单,问题得以解决:

String URL;
String newString;
    URL= "http://192.168.1.103/android_login_api/search.php?Method=rate&CAT=مهندسی عمران&KEY=ایمنی ترافیک"
    newString = URL.replaceAll(" ", "%20");

快乐编码